     /* Main Container */
        .doctor-appointment-container {
            background-color: #f8f9fa;
            padding: 30px 0;
        }
        
        /* Search Section */
        .search-section {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box .form-control {
            padding-left: 45px;
            border-radius: 8px;
            height: 50px;
            border: 1px solid #e0e0e0;
        }
        
        .search-box .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
            font-size: 18px;
        }
        
        /* Doctor Cards */
        .doctor-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 25px;
            height: 100%;
        }
        
        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .doctor-img-container {
            height: 220px;
            overflow: hidden;
        }
        
        .doctor-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .doctor-card:hover .doctor-img {
            transform: scale(1.05);
        }
        
        .doctor-info {
            padding: 20px;
        }
        
        .doctor-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .doctor-specialty {
            color: #00a3c8;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }
        
        .doctor-meta {
            color: #777;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .doctor-meta i {
            color: #00a3c8;
            margin-right: 5px;
            width: 18px;
            text-align: center;
        }
        
        .book-btn {
            background: #00a3c8;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 8px 15px;
            font-weight: 500;
            width: 100%;
            margin-top: 15px;
            transition: all 0.3s;
        }
        
        .book-btn:hover {
            background: #007d9c;
            color: white;
        }
        
        /* Modal Styles */
        .appointment-modal .modal-content {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .doctor-profile-sidebar {
            background: #f8f9fa;
            padding: 25px;
            /*height: 100%;*/
	font-size: 14px;
        }
        
        .modal-doctor-img {
            width: 80% !important;
            height: 80%;
			min-height:150px !important;
            border-radius: 10px;
            object-fit: cover;
            margin: 0 auto 15px;
            display: block;
            border: 3px solid #00a3c8;
        }
		
		.lang-ar .experience-badge {
            left: auto;
            right: 15px;
        }
		.experience-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            background-color: rgba(52, 163, 213, 0.9);
            color: white;
        }
        
        .modal-doctor-name {
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 5px;
		padding: 0 10px;
        }
        
        .modal-doctor-specialty {
            color: #00a3c8;
            text-align: center;
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
        }
        
        .modal-doctor-meta {
            margin-bottom: 6px;
			margin-left:30px;
        }
        
        .modal-doctor-meta i {
            color: #00a3c8;
            margin-right: 8px;
            width: 20px;
        }
        
        .day-card {
            text-align: center;
            padding: 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 10px;
			background-color:var(--primary-color) !important;
			border:none !important;
        }
        
        .day-card:hover, .day-card.active {
            background-color: var(--secondary-color) !important;
            color: white;
			border:none;
        }
        
        .day-card .day-name {
            font-weight: 600;
            font-size: 14px;
        }
        
        .day-card .date {
            font-size: 13px;
        }
        
        .time-slot {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 8px 8px 0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #00a3c8;
            font-size: 14px;
            color: #00a3c8;
            background-color: rgba(0, 163, 200, 0.1);
        }
        
        .time-slot:hover, .time-slot.selected {
            background-color: #00a3c8;
            color: white;
            border-color: #00a3c8;
        }
        
        .time-slot.booked {
            background-color: #f5f5f5;
            color: #999;
            cursor: not-allowed;
            text-decoration: line-through;
            border-color: #ddd;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .doctor-img-container {
                height: 180px;
            }
            
            .doctor-profile-sidebar {
                padding: 15px;
            }
        }
		
		
        .login-required {
            display: none;
        }
		
		.search-btn {
			border: none;
			background: #00a3c8;
			color: white;
			border-radius: 6px;
			padding: 0;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.search-btn:hover {
			background: #007d9c;
		}

		.search-box .form-control {
			padding-left: 45px;
			padding-right: 50px; /* Add space for the button */
			border-radius: 8px;
			height: 50px;
			border: 1px solid #e0e0e0;
		}