/* Settings styles for the unified menu */

/* Settings button styling */
#selectModeSettings.mode-select-button {
    background-color: #636363;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 180px;
}

#selectModeSettings.mode-select-button:hover {
    background-color: #4a4a4a;
}

/* Settings container styles */
#settingsContainer {
    width: 100%;
}

#settingsStep {
    padding: 20px;
}

.settings-section {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.settings-section h3 {
    margin-top: 0;
    color: #fff;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.settings-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
}

.settings-item label {
    flex: 0 0 180px;
    font-weight: bold;
}

.settings-control {
    flex: 1;
}

.settings-select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

.settings-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.settings-info {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #3a3a3a;
}

.settings-info p {
    margin: 5px 0;
}

.settings-apply-button {
    display: block;
    padding: 12px 25px;
    margin: 20px auto 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.settings-apply-button:hover {
    background-color: #218838;
}
