/* Navigator section styles */
.navigator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px; /* Increased height */
    background-color: #232323;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #333;
    padding: 0 15px;
}

.navigator .left-section {
    display: flex;
    align-items: center;
}

.navigator .nav-controls {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.navigator .nav-title {
    color: #ccc;
    font-size: 15px;
    font-weight: 500;
}

.navigator .nav-button {
    background-color: #333;
    border: 1px solid #444;
    color: #ccc;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.navigator .nav-button:hover:not(:disabled) {
    background-color: #444;
    color: #fff;
}

.navigator .nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.navigator .config-buttons {
    display: flex;
    gap: 12px;
}

.navigator .config-button {
    background-color: #4d90fe;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.navigator .config-button:hover {
    background-color: #5a9bff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.navigator .config-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Config feedback tooltip styling */
#config-feedback {
    position: fixed;
    top: 55px;
    right: 15px;
    background-color: #232323;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #444;
    display: none;
    z-index: 1000;
    color: #4d90fe;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: opacity 0.3s;
}

#config-feedback.config-success {
    color: #4CAF50;
    border-color: #4CAF50;
}

#config-feedback.config-error {
    color: #F44336;
    border-color: #F44336;
}

/* Adjust body to account for taller navigator */
body {
    padding-top: 50px;
}