/**
 * E-Formation Account Notices & Formations Section
 * Extracted from functions.php inline styles
 *
 * @package dlm-eformation
 * @since 2.0.0
 */

/* ── E-formation notices ───────────────────────────── */
.eformation-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.eformation-notice p {
    margin: 0 0 10px 0;
    color: #2e7d32;
}

.eformation-notice p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #558b2f;
}

/* ── Hide download/invoice elements (e-formation has no downloads) ── */
.woocommerce-account .woocommerce-MyAccount-downloads,
.order-downloads,
.invoice-download,
.download-table {
    display: none !important;
}

/* ── Formations section in My Account ──────────────── */
.formations-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

.formations-section h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e1e5e9;
    padding-bottom: 10px;
}

.formation-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.formation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.formation-access-link {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.formation-access-link:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.4);
    color: white !important;
}

.formation-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.formation-status.active {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.formation-status.expired {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.formation-status.completed {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}
