        body {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            font-family: 'Arial', sans-serif;
        }
        .dashboard {
            max-width: 700px;
            width: 100%;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 25px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .dashboard:hover {
            transform: translateY(-5px);
        }
        .dashboard h2 {
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.8rem;
        }
        .dashboard h2 .status {
            font-size: 1.2rem;
            color: #28a745;
            font-weight: 500;
            display: block;
            margin-top: 5px;
        }
        .dashboard p {
            font-size: 0.5rem;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
        }
        .dashboard p i {
            color: #3b82f6;
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        .logout {
            display: block;
            text-align: center;
            margin-top: 20px;
            color: #ffffff;
            background-color: #dc3545;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        .logout:hover {
            background-color: #c82333;
        }
        .error {
            color: #dc3545;
            margin-top: 10px;
            text-align: center;
        }
        .list-group-item {
            border: none;
            border-bottom: 1px solid #e0e0e0;
            padding: 15px;
            background-color: #f8f9fa;
            margin-bottom: 10px;
            border-radius: 5px;
        }
        .list-group-item strong {
            color: #1e3a8a;
        }
