
        .vaccine {
            background-color: #F3F4F6;
        }

            .vaccine .app-container {
            max-width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
            .vaccine .main-v-header {
            background: linear-gradient(135deg, #87Ceeb, #A5F3FC);
            padding: 16px 21px 14px 30px;
            border-bottom-left-radius: 32px;
            border-bottom-right-radius: 32px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            margin-top: 65px;
        }

            .vaccine .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

            .vaccine .header-title {
            font-size: 29px;
            font-weight: 800;
            color: #064E3B;
            letter-spacing: 0.5px;
        }

            .vaccine .header-icon {
            background-color: rgba(255,255,255,0.2);
            width: 52px;
            height: 52px;
            border-radius: 26px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid rgba(255,255,255,0.3);
            color: #064E3B;
            font-size: 28px;
        }

        /* Search Bar */
            .vaccine .search-container {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 0 16px;
            height: 50px;
            display: flex;
            align-items: center;
            margin-top: -54px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

            .vaccine .search-container:focus-within {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }

            .vaccine .search-input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 16px;
            background: transparent;
            padding: 0 10px;
            color: #1F2937;
        }

            .vaccine .search-icon { color: #FCA5A5; font-size: 20px; }
            .vaccine .hidden { display: none !important; }

        /* Grid System */
        .main-v {
            padding: 20px;
            flex: 1;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

            .vaccine .vaccine-grid {
            display: grid;
            /* Responsive Grid: 2 columns on mobile, auto-fill on larger screens */
            grid-template-columns: repeat(2, 1fr); 
            gap: 16px;
            padding-bottom: 30px;
        }

        @media (min-width: 768px) {
                .vaccine .vaccine-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 24px;
            }
        
        }
        @media (max-width: 768px) {
            .vaccine .vaccine-grid {
                gap: 0;
        }
                .vaccine .main-v-header{
                margin-top: 132px;
            }
                .vaccine .search-container {
                margin-top: 7px;
            }
            .main-v {
                padding: 5px;
                
            }
        }

        /* Card Styles */
            .vaccine .card {
            background-color: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
            border: 1px solid #D1FAE5;
            cursor: pointer;
            transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
            display: flex;
            flex-direction: column;
        }

            .vaccine .card:hover {
            transform: scale(0.98);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

            .vaccine .card-image-wrapper {
            position: relative;
            width: 100%;
            height: 140px;
        }

            .vaccine .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

            .vaccine .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(16, 185, 129, 0.3));
        }

            .vaccine .card-content {
            padding: 14px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
            width: 100%;
            padding: 6px 2px;
        }

            .vaccine .card-title {
            font-size: 15px;
            font-weight: 700;
            color: #065F46;
            margin-bottom: 12px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

            .vaccine .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding: 4px 0;
        }

            .vaccine .view-details {
            font-size: 12px;
            font-weight: 600;
            color: green;
            opacity: 0.8;
        }

            .vaccine .icon-wrapper {
            background-color: #D1FAE5;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #A7F3D0;
            color: green;
        }

        /* Animations */
        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Loader */
            .vaccine .loader-container {
            display: flex;
            justify-content: center;
            padding: 40px;
        }
            .vaccine .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #e5e7eb;
            border-top: 4px solid #10B981;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin { 100% { transform: rotate(360deg); } }

        /* Empty State */
            .vaccine .empty-state {
            text-align: center;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
            .vaccine .empty-icon-wrapper {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background-color: #D1FAE5;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 3px solid #A7F3D0;
            font-size: 48px;
            color: #DC2626;
        }
            .vaccine .empty-title { color: #065F46; font-size: 20px; margin-bottom: 8px; }
            .vaccine .retry-btn {
            margin-top: 24px;
            background-color: green;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
        }
        input#searchInput {
            width: 100%;
            height: 45px;
            border: none;
            margin-left: 11px;
        }
            .vaccine .search-container i{
            color: #000;
            font-size: 20px
        }
        
        