

.container {
    max-width: 1000px;
    margin: auto;
}



h2 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 5px;
}

/* Table Styling */
.table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.download-table th,
.download-table td {
    padding: 12px 15px;
    text-align: left;
}

.download-table thead {
    background: green;
}

.download-table th {
    font-weight: bold;
}

.download-table tbody tr {
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}

.download-table tbody tr:hover {
    background: #f9f9f9;
}

/* Download Button */
.btn-download {
    display: inline-block;
    padding: 8px 14px;
    background: #4fc3dc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-download:hover {
    background: #039be5;
}



/* Responsive Design */
@media (max-width: 768px) {
    .download-table thead {
        display: none;
    }

    .download-table, 
    .download-table tbody, 
    .download-table tr, 
    .download-table td {
        display: block;
        width: 100%;
    }

    .download-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background: #fff;
    }

    .download-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .download-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 50%;
        text-align: left;
        font-weight: bold;
    }
}