/* AI360 Mail Agency — Frontend Styles v1.0 */

.ai360mail-frontend {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
}

/* ── Header ── */
.ai360mail-fe-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #6366f1;
}
.ai360mail-fe-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ai360mail-fe-header p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

/* ── Cards ── */
.ai360mail-fe-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ai360mail-fe-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: #374151;
}

/* ── Active subscription card ── */
.ai360mail-fe-card-active {
    border-color: #22c55e;
    background: #f0fdf4;
}
.ai360mail-fe-card-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.ai360mail-fe-card-body {
    display: grid;
    gap: 12px;
}
.ai360mail-fe-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.ai360mail-fe-value {
    font-size: 15px;
    color: #111827;
    word-break: break-all;
}

/* ── Forms ── */
.ai360mail-fe-form-group {
    margin-bottom: 16px;
}
.ai360mail-fe-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.ai360mail-fe-form-group input,
.ai360mail-fe-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.ai360mail-fe-form-group input:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.ai360mail-fe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Buttons ── */
.ai360mail-fe-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.ai360mail-fe-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}
.ai360mail-fe-btn-primary {
    background: #6366f1;
    color: #fff;
}
.ai360mail-fe-btn-primary:hover { background: #4f46e5; }
.ai360mail-fe-btn-primary:disabled { background: #a5b4fc; cursor: not-allowed; }

.ai360mail-fe-btn-danger {
    background: #fff;
    color: #ef4444;
    border: 1px solid #fecaca;
}
.ai360mail-fe-btn-danger:hover {
    background: #fef2f2;
    border-color: #ef4444;
}
.ai360mail-fe-btn-danger:disabled { opacity: 0.6; cursor: not-allowed; }

.ai360mail-fe-btn-sm {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
}

/* ── Info Box ── */
.ai360mail-fe-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 20px;
    margin-top: 24px;
}
.ai360mail-fe-info h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #1e40af;
}
.ai360mail-fe-info p {
    margin: 0;
    font-size: 13px;
    color: #3b82f6;
    line-height: 1.5;
}

/* ── Frontend Box (login required) ── */
.ai360mail-frontend-box {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    max-width: 500px;
    margin: 40px auto;
}
.ai360mail-frontend-box p { font-size: 16px; color: #6b7280; }

/* ── Responsive ── */
@media (max-width: 600px) {
    .ai360mail-fe-form-row { grid-template-columns: 1fr; }
    .ai360mail-fe-form-actions { flex-direction: column; }
    .ai360mail-fe-btn { width: 100%; }
}
