        
        .dashboard {
font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    #align-items: center;
    min-height: 70vh;
    margin: 0;
    padding: 8rem 2rem;
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px auto;
            margin-bottom: 30px;
        }
        
        h1 {
            color: #2c3e50;
            margin: 0;
        }
        
        .logout-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .card {
background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    overflow: auto;
    height: max-content;
    max-width: 1200px;

            #background-color: white;
            #border-radius: 8px;
            #box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            #padding: 20px;
            #overflow: auto;
            #height: max-content;
        }
        
        .card h2 {
            color: #3498db;
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .info-row {
            #display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .info-label {
            font-weight: bold;
            color: #7f8c8d;
        }
        
        .info-value {
            color: #3498db;
        }
        
        .credit-display {
            font-size: 2rem;
            font-weight: bold;
            color: #27ae60;
            text-align: center;
            margin: 20px 0;
        }
        
        .progress-container {
            height: 10px;
            background-color: #ecf0f1;
            border-radius: 5px;
            margin: 15px 0;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background-color: #3498db;
            width: 65%; /* This would be dynamic in a real app */
        }
        
        .expiry-warning {
            color: #e74c3c;
            font-weight: bold;
            text-align: center;
            margin-top: 15px;
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .action-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .primary-btn {
            background-color: #3498db;
            color: white;
        }
        
        .secondary-btn {
            background-color: #ecf0f1;
            color: #2c3e50;
        }
        
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
        }
