/* CSS for Admin Settings Module */
.settings-card {
    padding: 25px;
    border-radius: 12px;
    background: rgba(25, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.settings-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* WhatsApp Box Styles */
.wa-status-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--text);
}

.wa-qr-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.wa-qr-container span {
    color: #666;
}

.wa-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.wa-actions button {
    flex: 1;
}

.wa-recipients-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 50px;
    max-height: 250px;
    overflow-y: auto;
}

.wa-add-form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.wa-add-form .form-group {
    flex: 1;
}

.btn-add-align {
    height: 40px;
    margin-bottom: 15px;
}

.btn-whatsapp {
    background-color: #00a884;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #008f6f;
}

/* Utilities */
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.text-dim { color: rgba(255, 255, 255, 0.6); }
.text-center { text-align: center; }
.block { display: block; }
.w-100 { width: 100%; }
