/* Hill name link styling */
.hill-name-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    transition: all 0.2s ease;
    display: inline-block;
}

.edit-bagged-btn {
    cursor: pointer;
}

.edit-bagged-btn:hover {
    cursor: pointer;
}

.hill-name-link:hover {
    background-color: #e3f2fd;
    color: #0d47a1;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hill-name-link:active {
    background-color: #bbdefb;
}

