/* Settings dialog styles */
.settings-dialog {
    padding: 0;
}

.settings-dialog .settings-content {
    padding: 15px 0;
}

.settings-dialog .setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 5px 0;
}

.settings-dialog .setting-label {
    font-weight: normal;
    flex: 1;
}

.settings-dialog .toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-left: auto;
}

.settings-dialog .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-dialog .toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.settings-dialog .toggle-label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.settings-dialog input:checked + .toggle-label {
    background-color: #53AF31;
}

.settings-dialog input:checked + .toggle-label:before {
    transform: translateX(20px);
}

/* Dark theme modifications */
html[data-theme='dark'] .settings-dialog {
    background-color: #2d2d2d;
    color: #e1e1e1;
}

html[data-theme='dark'] .settings-dialog .setting-label {
    color: #e1e1e1;
}
