 /* Background with Gradient */
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63);
            color: white;
            font-family: 'Poppins', sans-serif;
        }

        /* Title Styling */
        h1 {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            background: -webkit-linear-gradient(45deg, #ff9a9e, #fad0c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Card Design - Glassmorphism */
        .card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            color: white;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ff9a9e;
        }

        .card-body {
            padding: 20px;
        }

        .list-group-item {
            background: transparent;
            border: none;
            color: #ffffffb3;
        }

        /* Button Style */
        .btn-appointment {
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: white;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
            border: none;
        }

        .btn-appointment:hover {
            background: linear-gradient(45deg, #ff4b2b, #ff416c);
            box-shadow: 0 4px 10px rgba(255, 75, 43, 0.5);
        }

        /* Icon Styling */
        .bx {
            font-size: 1.2rem;
            margin-right: 8px;
            vertical-align: middle;
            color: #ff9a9e;
        }
        
        .list-group li{
            padding-left: 0;
        }