body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.doctor-listing {
    max-width: 800px;
    margin: 0 auto;
}

.doctor-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.doctor-info {
    display: flex;
    align-items: center;
}

.profile-img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
}

.doctor-info h2,h5 {
    margin: 0;
    color: #352b8a;
}

.doctor-info .experience {
    margin: 5px 0;
    color: #5042c9;
}

.doctor-info .specialization {
    margin: 0;
    color: #5042c9;
}

.doctor-availability {
    text-align: right;
	color: #5042c9;
}

.doctor-availability p {
    margin: 0;
    color: #5042c9;
}

  /* Button styling */
        .book-appointment-btn {
            background-color: #352b8a; /* Blue background */
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 25px;
            cursor: pointer;
            display: inline-flex;
            /* align-items: center; */
			margin: 50px;
        }

        .book-appointment-btn img {
            margin-right: 4px;
        }

        /* Pop-up styling */
        .popup {
            display: none; /* Hidden by default */
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* Close button */
        .close-popup {
            cursor: pointer;
            color: #ff0000;
            float: right;
            font-size: 20px;
        }

        /* Form styling */
        form label, form input, form textarea {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        form input, form textarea {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        form button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
			/* margin:80px; */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .popup {
                width: 90%;
            }
        }
		
		
        table {
            width: 100%;
            margin-left: 108px;
            margin-right: 21px;
            border-collapse: collapse;
            box-shadow: 0 2px 10px rgba(36, 2, 230, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
            color: #5042c9;
            font-weight: 5;
        }

        th {
            background-color: #352b8a;
            color: white;
            position: sticky;
            top: 0;
        }

        tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        tr:hover {
            background-color: #ddd;
        }

        @media (max-width: 600px) {
            th, td {
                font-size: 12px;
                padding: 8px;
            }
        }
        
        