.downloads-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
}
.downloads-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    /* background-color: red; */
}
.downloads-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 200px;
    text-align: center;
    padding: 20px;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
}
.downloads-card img {
    /* width: 50%; */
    /* height: 50%; */
    /* margin-bottom: 20px; */
    /* border: 1px solid red; */
    margin: auto;
    margin-top: 10%;
}
.downloads-title {
    font-size: 1.2em;
    /* margin-bottom: 10px; */
    font-weight: 600;
    padding: 10px 0px;
}
.downloads-description {
    font-size: 0.9em;
    margin-bottom: 20px;
}
.downloads-button {
    background: #007bff;
    color: white !important;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 600px) {
    .downloads-card {
        width: 100%;
        flex: none;
    }
}

.downloads-transaction-form {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.downloads-transaction-form h2 {
    color: #007bff;
    text-align: left;
}
.downloads-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.downloads-table th,
.downloads-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.downloads-table th {
    background-color: #f2f2f2;
    color: #333;
}
.downloads-table td a img {
    width: 20px;
    height: 20px;
}

.downloads-container {
    padding: 20px;
}

.downloads-section {
    margin-bottom: 40px;
}

.downloads-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.downloads-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.downloads-table {
    width: 100%;
    border-collapse: collapse;
}

.downloads-table-header {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
}

.downloads-table td, .downloads-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.downloads-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.downloads-table tr:hover {
    background-color: #f1f1f1;
}

.downloads-link {
    text-decoration: none;
    /* border: 3px solid red; */
}

.downloads-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .downloads-table, .downloads-table thead, .downloads-table tbody, .downloads-table th, .downloads-table td, .downloads-table tr {
        display: block;
        width: 100%;
    }

    .downloads-table tr {
        margin-bottom: 15px;
    }

    .downloads-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .downloads-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}