/* ==========================================
   NOTIFICATION SERVICE STYLES
   Notificator modal + services panel row
   ========================================== */

/* ---- Notificator Modal ---- */

.notificator-wrapper {
    max-width: 500px;
}

.notificator-content {
    padding: 32px 28px 24px;
}

/* Header */
.notificator-header {
    text-align: center;
    margin-bottom: 28px;
}

.notificator-bell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-bottom: 16px;
}

.notificator-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.notificator-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.notificator-schedule {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* Personality Cards */
.notificator-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.notificator-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.18s ease;
    position: relative;
}

.notificator-card:hover {
    border-color: #667eea;
    background: #fafbff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
}

.notificator-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.04) 100%);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}

.notificator-card-emoji {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.notificator-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.notificator-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.notificator-card-tagline {
    font-size: 12px;
    color: #64748b;
    line-height: 1.3;
}

.notificator-card-preview {
    font-size: 12px;
    font-style: italic;
    color: #94a3b8;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notificator-card-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.18s ease;
}

.notificator-card.selected .notificator-card-check {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

/* Error message */
.notificator-error {
    font-size: 13px;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    text-align: center;
}

/* Decline button */
.notificator-decline-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    transition: color 0.15s;
}

.notificator-decline-btn:hover {
    color: #64748b;
}

/* ---- Services Panel Row ---- */

.notif-service-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    margin-top: 4px;
}

.notif-service-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.notif-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notif-service-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-service-status {
    font-size: 14px;
    font-weight: 600;
}

.notif-service-status.on  { color: #059669; }
.notif-service-status.off { color: #94a3b8; }

.notif-service-subtext {
    font-size: 12px;
    color: #94a3b8;
}
