 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(120deg, #4c6ef5, #228be6);
            color: white;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        } */

        h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .search-container {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
        }

        .search-input::placeholder {
            color: #aaa;
        }

        .search-btn {
            background: #4c6ef5;
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #3b5bdb;
        }

        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background: #4c6ef5;
            color: white;
            border-color: #4c6ef5;
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .doctor-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-img {
            height: 200px;
            overflow: hidden;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .doctor-card:hover .card-img img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
        }

        .doctor-name {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #343a40;
        }

        .doctor-specialty {
            color: #4c6ef5;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .doctor-clinic {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .doctor-availability {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .available {
            color: #40c057;
            font-weight: 600;
        }

        .not-available {
            color: #fa5252;
        }

        .rating {
            color: #f59f00;
            margin-bottom: 20px;
        }

        .card-actions {
            display: flex;
            justify-content: space-between;
        }

        /* .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .btn-primary {
            background: #4c6ef5;
            color: white;
        }

        .btn-primary:hover {
            background: #3b5bdb;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #4c6ef5;
            color: #4c6ef5;
        }

        .btn-outline:hover {
            background: #4c6ef5;
            color: white;
        } */

        @media (max-width: 768px) {
            .search-container {
                flex-direction: column;
                border-radius: 12px;
            }
            
            .search-input {
                width: 100%;
                border-radius: 12px 12px 0 0;
            }
            
            .search-btn {
                width: 100%;
                padding: 15px;
                border-radius: 0 0 12px 12px;
            }
            
            .filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                text-align: center;
            }
            
            .doctors-grid {
                grid-template-columns: 1fr;
            }
        }

        .no-results {
            text-align: center;
            grid-column: 1 / -1;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .no-results i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-results p {
            color: #888;
            font-size: 1.2rem;
        }