/* =======================
   STYLES POUR LA PAGE D'ACCUEIL
   ======================= */

.home-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.user-status {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.logout-link {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
}

.logout-link:hover {
    background: #c82333;
    color: white;
}

.auth-section {
    margin-top: 30px;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.auth-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.auth-card h4 {
    margin-bottom: 20px;
}

.auth-card h4.login {
    color: #007bff;
}

.auth-card h4.register {
    color: #28a745;
}

.auth-card p {
    color: #666;
    margin-bottom: 20px;
}

.auth-card .btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.auth-card .btn.login {
    background: #007bff;
    color: white;
}

.auth-card .btn.register {
    background: #28a745;
    color: white;
}

.auth-card .btn:hover.login {
    background: #0056b3;
}

.auth-card .btn:hover.register {
    background: #218838;
}

.info-section {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-top: 30px;
}

.info-section h4 {
    color: #856404;
    margin-bottom: 15px;
}

.info-section ul {
    color: #856404;
    margin: 0;
    padding-left: 20px;
}