/* Additional styles for Settings functionality */
.settings-container {
    display: flex;
    height: 450px;
    background: rgba(16, 17, 29, 0.7);
    border-radius: 15px;
    overflow: hidden;
}

.settings-sidebar {
    width: 220px;
    background: rgba(21, 22, 37, 0.8);
    padding: 20px 10px;
}

.settings-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-nav-item:hover {
    background: rgba(61, 76, 170, 0.3);
}

.settings-nav-item.active {
    background: rgba(61, 76, 170, 0.8);
}

.settings-nav-icon {
    font-size: 18px;
    margin-right: 12px;
}

.settings-nav-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.settings-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.settings-tab {
    display: none;
}

.settings-tab.active {
    display: block;
}

.settings-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.settings-group {
    margin-bottom: 30px;
    background: rgba(34, 38, 57, 0.6);
    border-radius: 10px;
    padding: 15px;
}

.settings-group-title {
    font-size: 14px;
    font-weight: 600;
    color: #9a9eae;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.settings-option:last-child {
    margin-bottom: 0;
}

.settings-option-label {
    font-size: 13px;
    color: white;
}

.settings-option-control {
    display: flex;
    align-items: center;
}

.settings-select {
    background: rgba(30, 32, 51, 0.8);
    border: 1px solid rgba(61, 76, 170, 0.5);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    min-width: 150px;
    outline: none;
}

.settings-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.settings-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 32, 51, 0.8);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #3d4caa;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.settings-slider {
    width: 150px;
    height: 5px;
    background: rgba(30, 32, 51, 0.8);
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.settings-slider:hover {
    opacity: 1;
}

.settings-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #3d4caa;
    cursor: pointer;
}

.settings-slider-value {
    margin-left: 10px;
    font-size: 12px;
    color: white;
    width: 40px;
}

.settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.settings-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #9a9eae;
    font-style: italic;
    background: rgba(34, 38, 57, 0.3);
    border-radius: 10px;
}

/* scroll bar style */

.settings-content::-webkit-scrollbar {
    width: 8px;
}

.settings-content::-webkit-scrollbar-track {
    background: rgba(30, 32, 51, 0.8);
    border-radius: 10px;
}

.settings-content::-webkit-scrollbar-thumb {
    background-color: #3d4caa;
    border-radius: 10px;
    border: 2px solid rgba(30, 32, 51, 0.8);
}

.settings-content::-webkit-scrollbar-thumb:hover {
    background-color: #2c3b6e;
}

.settings-content::-webkit-scrollbar-thumb:active {
    background-color: #3d4caa;
}