/* View buttons styling to match zoom controls */
.button-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
}

.view-button {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 3px 8px !important;
    font-size: 13px !important;
    font-weight: normal !important;
    font-family: system-ui, -apple-system, sans-serif !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: all 0.2s ease;
    margin: 0 4px !important;
}

.view-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.view-button.active {
    background-color: #00a3a3 !important; /* Teal color matching zoom controls */
    border: 1px solid #008080 !important;
    color: white !important;
}
