
        /* styles for details.html */

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background: #f4f4f4;
            color: #333;
            line-height: 1.7;
        }
        
        .details-hero {
            background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
            color: #00695c;
            padding: 32px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .details-hero h1 {
            font-size: 2em;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
        }
        
        .details-hero .tagline {
            font-size: 1.2em;
            color: #26a69a;
        }
        
        .details-page .container {
            max-width: 960px;
            margin: 20px auto;
            padding: 30px;
            padding-top: 16px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .details-page .section-title {
            font-size: 2em;
            color: #007bff;
            margin-bottom: 20px;
            border-bottom: 3px solid #e0e0e0;
            padding-bottom: 15px;
        }
        
        .details-page .post-date {
            color: #6c757d;
            font-size: 0.95em;
            margin-bottom: 25px;
        }
        
        .details-page .post-date i {
            margin-right: 5px;
        }
        
        .details-page .short-info {
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1em;
        }
        
        .details-page .short-info .highlight {
            color: #007bff;
            font-weight: bold;
        }
        
        /* Key Info Grid */
        .details-page .key-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .details-page .info-card {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .details-page .info-card i {
            font-size: 1.8em;
            color: #007bff;
            margin-bottom: 10px;
        }
        
        .details-page .info-card h3 {
            font-size: 1.2em;
            color: #333;
            margin-bottom: 5px;
        }
        
        .details-page .info-card p {
            font-size: 1em;
        }
        
        .details-page .info-card a {
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }
        
        /* Important Dates */
        .details-page .dates-list {
            list-style: none;
            padding-left: 0;
        }
        
        .details-page .dates-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }
        
        .details-page .dates-list li:last-child {
            border-bottom: none;
        }
        
        .details-page .dates-list li i {
            margin-right: 8px;
            color: #ffc107; /* Example icon color */
        }
        
        .details-page .dates-list li strong {
            font-weight: 600;
            color: #333;
            margin-right: 5px;
        }
        
        .details-page .dates-list li .highlight {
            color: #dc3545; /* Example highlight color */
            font-weight: bold;
        }
        
        /* Application Fee */
        .details-page .fee-details {
            list-style: none;
            padding-left: 0;
        }
        
        .details-page .fee-details li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .details-page .fee-details li:last-child {
            border-bottom: none;
        }
        
        .details-page .fee-details strong {
            font-weight: 600;
        }
        
        .details-page .fee-details .fee {
            color: #28a745;
            font-weight: bold;
        }
        
        /* Age Limit */
        .details-page .age-details {
            list-style: none;
            padding-left: 0;
        }
        
        .details-page .age-details li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .details-page .age-details li:last-child {
            border-bottom: none;
        }
        
        .details-page .age-details strong {
            font-weight: 600;
        }
        
        /* Responsive Table Container */
        .table-responsive {
            overflow-x: auto;
            margin-bottom: 30px;
        }
        
        /* Vacancy Details Table */
        .details-page .vacancy-table,
        .details-page .category-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden; /* To contain rounded borders */
        }
        
        .details-page .vacancy-table th,
        .details-page .vacancy-table td,
        .details-page .category-table th,
        .details-page .category-table td {
            padding: 12px 15px;
            border: 1px solid #b5b2b2;
            text-align: left;
            white-space:wrap; /* Prevent text wrapping within cells */
        }
        
        .details-page .vacancy-table th,
        .details-page .category-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #333;
        }
        
        .details-page .vacancy-table tbody tr:nth-child(even),
        .details-page .category-table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .details-page .vacancy-table td a {
            color: #007bff;
            text-decoration: none;
        }
        
        /* How to Apply */
        .details-page .apply-steps {
            list-style-type: decimal;
            padding-left: 20px;
            margin-bottom: 30px;
        }
        
        .details-page .apply-steps li {
            padding: 8px 0;
            line-height: 1.8;
        }
        
        /* Download Links */
        .details-page .links-group {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .details-page .button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .details-page .button.primary {
            background-color: #28a745; /* Green */
        }
        
        .details-page .button.secondary {
            background-color: #007bff; /* Blue */
        }
        
        .details-page .button.info {
            background-color: #17a2b8; /* Cyan */
        }
        
        .details-page .button:hover {
            opacity: 0.9;
        }
        
        /* Job Image */
        .details-page .job-image {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .details-page .job-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        /* Visually Hidden Class */
        .visually-hidden {
            position: absolute !important;
            height: 1px;
            width: 1px;
            overflow: hidden;
            clip: rect(1px, 1px, 1px, 1px);
            white-space: nowrap;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .details-hero {
                padding: 16px 0;
                margin-bottom: 32px;

                h1{
                    font-size: 1.25em;
                    line-height: 1.2em;
                }

                .tagline {
                    font-size: 1em;
                    color: #26a69a;
                    line-height: 1.2em;
                    padding-top: 0.8em;
                }
            }
        
            .details-page{
                .container {
                    padding: 20px 16px;
                    padding-top: 4px;
                    font-size: 0.8em;
                }

                .section-title {
                    font-size: 1.5em;
                    margin-bottom: 8px;
                    padding-top: 16px;
                    padding-bottom: 8px;
                    line-height: 1.3em;
                }

                .post-date {
                    /* font-size: 0.8em; */
                    margin-bottom: 16px;
                }

                .short-info {
                    /* font-size: 0.85em; */
                    margin-bottom: 16px;
                }

                .key-info-grid {
                    gap: 4px;
                    grid-template-columns: repeat(2, 1fr);
                    font-size: 0.8em;
                }

                .info-card {
                    padding: 4px;
                }

                .info-card h3 {
                    font-size: 1.1em;
                }

                .vacancy-table td{
                    padding: 4px;
                }

                .links-group {
                    flex-direction: column;
                    align-items: stretch;
                }

                .button {
                    padding: 4px 25px;
                    margin-bottom: 10px;
                }
            }
        
        }
            