    /* admit_card_view.css */
    /* Main Container and Layout */
    .main-container {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem;
    }

    .content-column {
        background: #fff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Header Styles */
    .page-header {
        color: #1a237e;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #3f51b5;
        font-weight: 600;
    }

    /* Download Button */
    .link-button {
        display: inline-block;
        background: linear-gradient(135deg, #3f51b5, #2196f3);
        color: white !important;
        padding: 1rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: transform 0.2s, box-shadow 0.2s;
        margin: 1rem 0;
        text-align: center;
    }

    .link-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
    }

    /* Table Styles */
    .announce-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .announce-table th,
    .announce-table td {
        padding: 1rem;
        border-bottom: 1px solid #dee2e6;
    }

    .announce-table th {
        background: #3f51b5;
        color: white;
        font-weight: 500;
        width: 30%;
    }

    .announce-table tr:nth-child(even) {
        background-color: #f1f3f5;
    }

    .announce-table tr:hover {
        background-color: #e9ecef;
    }

    /* Typography */
    p {
        line-height: 1.6;
        color: #495057;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    h3 {
        color: #1a237e;
        margin: 2rem 0 1rem;
        font-size: 1.5rem;
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .main-container {
            grid-template-columns: 1fr;
            padding: 0.5rem;
        }
        
        .content-column {
            padding: 1rem;
        }
        
        .page-header {
            font-size: 1.5rem;
        }
        
        .announce-table {
            display: block;
            overflow-x: auto;
        }
        
        .link-button {
            width: 100%;
            padding: 1rem;
        }
    }

    /* Additional Enhancements */
    strong {
        color: #2d3436;
    }

    em {
        color: #3f51b5;
        font-style: normal;
        font-weight: 500;
    }

    /* Back Link Style */
    .back-link {
        display: inline-block;
        margin-top: 1.5rem;
        color: #3f51b5 !important;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .back-link:hover {
        color: #1a237e !important;
    }
    /* admit_card_view.css */
    /* Main Container */
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }

    /* Header Styles */
    .admit-header {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 25px;
    }

    .admit-title {
        color: #1a237e;
        font-size: 28px;
        margin: 0 0 10px 0;
    }

    .source-website {
        color: #e91e63;
        font-size: 18px;
        font-weight: 500;
    }

    .last-updated {
        margin-top: 15px;
        font-size: 14px;
        color: #666;
    }

    /* Download Button */
    .download-container {
        text-align: center;
        margin: 30px 0;
    }

    .download-btn {
        background: #2196F3;
        color: #fff !important;
        padding: 20px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 20px;
        display: inline-block;
        transition: transform 0.3s;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .download-btn:hover {
        transform: translateY(-3px);
        background: #1976D2;
    }

    .download-sub {
        display: block;
        font-size: 16px;
        margin-top: 8px;
        opacity: 0.9;
    }

    /* Key Dates Grid */
    .key-dates-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 30px 0;
    }

    .date-card {
        background: #fff;
        border: 2px solid #2196F3;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
    }

    .date-label {
        color: #666;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .date-value {
        color: #2196F3;
        font-size: 20px;
        font-weight: 600;
    }

    /* Details Table */
    .details-table {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin: 30px 0;
    }

    .table-header {
        background: #1a237e;
        color: #fff;
        padding: 15px;
        font-size: 20px;
        border-radius: 8px 8px 0 0;
    }

    .details-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .details-table th,
    .details-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .details-table th {
        background: #f8f9fa;
        width: 35%;
        font-weight: 500;
    }

    /* Additional Info */
    .additional-info {
        margin-top: 30px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .info-title {
        color: #1a237e;
        margin-top: 0;
    }

    .info-list {
        padding-left: 20px;
    }

    .info-list li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .main-container {
            grid-template-columns: 1fr;
            padding: 10px;
        }
        
        .key-dates-grid {
            grid-template-columns: 1fr;
        }
        
        .admit-title {
            font-size: 24px;
        }
        
        .download-btn {
            font-size: 18px;
            padding: 15px 25px;
        }
    }