.dwe-settings-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.dwe-settings-lede {
    color: #4b5563;
    font-size: 14px;
    margin: 4px 0 14px;
}

.dwe-settings-nav {
    width: 220px;
    border-right: 1px solid #e3e3e3;
    padding-right: 20px;
}

.dwe-settings-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dwe-settings-nav li {
    margin: 0;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
}

.dwe-settings-nav li.active,
.dwe-settings-nav li:hover {
    background: #f2f2f2;
    font-weight: 600;
}

.dwe-settings-content {
    flex: 1;
    max-width: 800px;
}

.dwe-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px 25px;
    margin-bottom: 25px;
}

.dwe-card h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.dwe-card h2 + .desc {
    font-size: 14px;
    color: #666;
    margin: 4px 0 16px;
}

.dwe-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
    gap: 12px;
}

.dwe-row:last-child {
    border-bottom: none;
}

.dwe-row label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.dwe-control {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.dwe-control .description {
    margin: 0;
    color: #666;
    font-size: 12px;
}

.dwe-toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.dwe-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dwe-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #bbb;
    border-radius: 34px;
    transition: 0.3s;
}

.dwe-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.dwe-toggle input:checked + .dwe-toggle-slider {
    background-color: #0d9488;
}

.dwe-toggle input:checked + .dwe-toggle-slider:before {
    transform: translateX(22px);
}

.dwe-select {
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fafafa;
    min-width: 220px;
}

.dwe-text {
    width: 100%;
    max-width: 320px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.dwe-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dwe-save-btn {
    background: #0d9488;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}

.dwe-save-btn:hover {
    background: #0f766e;
}

.dwe-cancel-btn {
    background: #efefef;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}
