/* Anniversary Meal Planner - Frontend Styles */

.amp-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.amp-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3700af;
}

.amp-header h2 {
    color: #333;
    font-size: 32px;
    margin: 0 0 10px 0;
}

.amp-subtitle {
    color: #666;
    font-size: 18px;
    margin: 0;
}

/* Barre de progression */
.amp-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.amp-progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.amp-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.amp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.amp-progress-step.amp-active .amp-step-number,
.amp-progress-step.amp-completed .amp-step-number {
    background: #3700af;
    color: white;
}

.amp-step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.amp-progress-step.amp-active .amp-step-label {
    color: #3700af;
    font-weight: bold;
}

/* Formulaire */
.amp-step {
    display: none;
}

.amp-step.amp-active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amp-step h3 {
    color: #333;
    font-size: 24px;
    margin: 0 0 30px 0;
}

.amp-form-group {
    margin-bottom: 25px;
}

.amp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.amp-form-group input[type="text"],
.amp-form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.amp-form-group input:focus {
    outline: none;
    border-color: #3700af;
}

.amp-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.amp-email-exists-message {
    margin-top: 10px;
    padding: 12px 15px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 6px;
    color: #0c5460;
    font-size: 14px;
    line-height: 1.5;
    animation: slideIn 0.3s ease;
}

/* Compteurs */
.amp-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.amp-counter-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.amp-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.amp-counter-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #3700af;
    color: white;
    font-size: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amp-counter-btn:hover {
    background: #2d0089;
    transform: scale(1.05);
}

.amp-counter-btn:active {
    transform: scale(0.95);
}

.amp-counter-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.amp-counter input[type="number"] {
    width: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px;
    color: #333;
}

/* Membres */
.amp-member-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3700af;
}

.amp-member-card.amp-child {
    border-left-color: #FF9800;
}

.amp-member-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.amp-member-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.amp-member-badge {
    display: inline-block;
    background: #3700af;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 10px;
}

.amp-member-badge.amp-child {
    background: #FF9800;
}

.amp-member-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.amp-meal-choice {
    margin-bottom: 20px;
}

.amp-meal-choice h4 {
    margin: 0 0 12px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.amp-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amp-radio-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amp-radio-option:hover {
    border-color: #3700af;
    background: #f3f0ff;
}

.amp-radio-option input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.amp-radio-option label {
    cursor: pointer;
    font-size: 15px;
    color: #333;
    margin: 0;
    flex: 1;
}

.amp-radio-option input[type="radio"]:checked + label {
    font-weight: bold;
    color: #3700af;
}

.amp-auto-meal {
    padding: 12px 15px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-weight: 600;
}

/* Récapitulatif */
.amp-summary-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.amp-summary-section h4 {
    margin: 0 0 15px 0;
    color: #2196F3;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2196F3;
}

.amp-summary-info {
    margin-bottom: 20px;
}

.amp-summary-info p {
    margin: 8px 0;
    color: #333;
    font-size: 15px;
}

.amp-summary-info strong {
    color: #000;
}

.amp-summary-member {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    border-left: 4px solid #3700af;
}

.amp-summary-member.amp-child {
    border-left-color: #FF9800;
}

.amp-summary-member-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.amp-summary-meals {
    color: #666;
    font-size: 14px;
}

.amp-summary-meals div {
    margin: 4px 0;
}

/* Boutons */
.amp-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.amp-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.amp-btn-primary {
    background: #3700af;
    color: white;
}

.amp-btn-primary:hover {
    background: #2d0089;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 0, 175, 0.3);
}

.amp-btn-secondary {
    background: #757575;
    color: white;
}

.amp-btn-secondary:hover {
    background: #616161;
}

.amp-btn-success {
    background: #3700af;
    color: white;
    font-size: 18px;
}

.amp-btn-success:hover {
    background: #2d0089;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 0, 175, 0.4);
}

.amp-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.amp-messages {
    margin-top: 20px;
}

.amp-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.amp-message-success {
    background: #d4edda;
    color: #155724;
}

.amp-message-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.amp-message-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Récapitulatif de succès */
.amp-success-recap {
    animation: fadeIn 0.5s ease;
}

.amp-success-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #3700af 0%, #2d0089 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    margin: -30px -30px 0 -30px;
}

.amp-success-icon {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.amp-success-header h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: white;
}

.amp-success-subtitle {
    font-size: 18px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.amp-success-email {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.amp-success-email strong {
    color: #fff;
    font-weight: bold;
}

.amp-success-details {
    padding: 30px 0;
}

.amp-success-details h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #3700af;
}

.amp-success-details h4 {
    font-size: 20px;
    color: #333;
    margin: 30px 0 20px 0;
}

.amp-success-family-info {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.amp-success-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.amp-success-info-item:last-child {
    border-bottom: none;
}

.amp-success-label {
    font-weight: 600;
    color: #666;
}

.amp-success-value {
    color: #333;
    font-weight: 500;
}

.amp-success-members {
    margin-bottom: 30px;
}

.amp-success-member-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #3700af;
    transition: all 0.2s ease;
}

.amp-success-member-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.amp-success-member-card.amp-success-child {
    border-left-color: #FF9800;
}

.amp-success-member-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.amp-success-member-icon {
    font-size: 32px;
    line-height: 1;
}

.amp-success-member-name {
    flex: 1;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.amp-success-member-type {
    background: #3700af;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.amp-success-child .amp-success-member-type {
    background: #FF9800;
}

.amp-success-member-meals {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amp-success-meal-item {
    font-size: 15px;
    color: #666;
}

.amp-success-meal-item strong {
    color: #333;
}

.amp-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.amp-success-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.amp-success-note p {
    margin: 10px 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.amp-success-note p:first-child {
    margin-top: 0;
}

.amp-success-note p:last-child {
    margin-bottom: 0;
}

/* Responsive Success Recap */
@media (max-width: 768px) {
    .amp-success-header {
        padding: 30px 15px;
        margin: -20px -20px 0 -20px;
    }
    
    .amp-success-icon {
        font-size: 60px;
    }
    
    .amp-success-header h2 {
        font-size: 24px;
    }
    
    .amp-success-subtitle {
        font-size: 16px;
    }
    
    .amp-success-actions {
        flex-direction: column;
    }
    
    .amp-success-actions .amp-btn {
        width: 100%;
    }
    
    .amp-success-info-item {
        flex-direction: column;
        gap: 5px;
    }
}

@media print {
    .amp-success-actions {
        display: none;
    }
    
    .amp-success-note {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .amp-container {
        padding: 20px;
        margin: 20px;
    }
    
    .amp-header h2 {
        font-size: 24px;
    }
    
    .amp-counters {
        grid-template-columns: 1fr;
    }
    
    .amp-member-fields {
        grid-template-columns: 1fr;
    }
    
    .amp-form-actions {
        flex-direction: column;
    }
    
    .amp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .amp-progress-bar::before {
        left: 30px;
        right: 30px;
    }
    
    .amp-step-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .amp-container {
        margin: 10px;
        padding: 15px;
    }
    
    .amp-header h2 {
        font-size: 20px;
    }
    
    .amp-subtitle {
        font-size: 14px;
    }
}

/* ========================================
   Shortcode Liste des inscrits
   ======================================== */

.amp-list-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.amp-list-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3700af;
}

.amp-list-header h2 {
    color: #333;
    font-size: 32px;
    margin: 0;
}

/* Statistiques */
.amp-list-stats {
    margin-bottom: 40px;
}

.amp-list-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.amp-list-stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease;
}

.amp-list-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.amp-list-stat-card.amp-list-stat-primary {
    background: linear-gradient(135deg, #3700af 0%, #2d0089 100%);
    color: white;
}

.amp-list-stat-icon {
    font-size: 40px;
    line-height: 1;
}

.amp-list-stat-content {
    flex: 1;
}

.amp-list-stat-value {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.amp-list-stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Résumé des repas */
.amp-list-meals-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.amp-list-meal-day {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #3700af;
}

.amp-list-meal-day h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
}

.amp-list-meal-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amp-list-meal-item {
    font-size: 14px;
    color: #666;
}

.amp-list-meal-item strong {
    color: #3700af;
    font-weight: bold;
}

/* Liste des familles */
.amp-list-families {
    margin-top: 40px;
}

.amp-list-families h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.amp-list-empty {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

.amp-list-family-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3700af;
    transition: all 0.2s ease;
}

.amp-list-family-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.amp-list-family-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.amp-list-family-header h4 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.amp-list-family-count {
    background: #3700af;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.amp-list-family-members {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amp-list-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.amp-list-member:hover {
    background: #f0f0f0;
}

.amp-list-member-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.amp-list-member-meals {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

.amp-list-member-meal {
    color: #666;
}

.amp-list-member-meal strong {
    color: #3700af;
}

/* Responsive Liste */
@media (max-width: 768px) {
    .amp-list-container {
        padding: 20px;
        margin: 20px;
    }
    
    .amp-list-header h2 {
        font-size: 24px;
    }
    
    .amp-list-stat-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .amp-list-meals-summary {
        grid-template-columns: 1fr;
    }
    
    .amp-list-family-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .amp-list-member {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .amp-list-member-meals {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .amp-list-container {
        margin: 10px;
        padding: 15px;
    }
    
    .amp-list-header h2 {
        font-size: 20px;
    }
    
    .amp-list-stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Shortcode Dashboard
   ======================================== */

.amp-dashboard-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.amp-dashboard-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3700af;
}

.amp-dashboard-header h2 {
    color: #333;
    font-size: 32px;
    margin: 0;
}

/* Statistiques principales */
.amp-dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.amp-dashboard-stat-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amp-dashboard-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.amp-dashboard-stat-card.amp-dashboard-stat-primary {
    background: linear-gradient(135deg, #3700af 0%, #2d0089 100%);
    color: white;
}

.amp-dashboard-stat-icon {
    font-size: 48px;
    line-height: 1;
}

.amp-dashboard-stat-content {
    flex: 1;
}

.amp-dashboard-stat-value {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
}

.amp-dashboard-stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections de repas */
.amp-dashboard-meals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.amp-dashboard-meal-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #3700af;
}

.amp-dashboard-meal-section h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #333;
}

.amp-dashboard-meal-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.amp-dashboard-meal-card {
    background: white;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.amp-dashboard-meal-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.amp-dashboard-meal-card.amp-dashboard-meal-absent {
    opacity: 0.7;
}

.amp-dashboard-meal-icon {
    font-size: 32px;
    line-height: 1;
}

.amp-dashboard-meal-info {
    flex: 1;
}

.amp-dashboard-meal-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.amp-dashboard-meal-count {
    color: #3700af;
    font-weight: bold;
    font-size: 18px;
}

.amp-dashboard-meal-absent .amp-dashboard-meal-count {
    color: #999;
}

/* Message vide */
.amp-dashboard-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
}

.amp-dashboard-empty p {
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .amp-dashboard-container {
        padding: 20px;
        margin: 20px;
    }
    
    .amp-dashboard-header h2 {
        font-size: 24px;
    }
    
    .amp-dashboard-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .amp-dashboard-meals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .amp-dashboard-container {
        margin: 10px;
        padding: 15px;
    }
    
    .amp-dashboard-header h2 {
        font-size: 20px;
    }
    
    .amp-dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .amp-dashboard-stat-value {
        font-size: 28px;
    }
}
