.um-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0px;
}

@media (max-width: 768px) {
    .um-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .um-grid-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.um-grid-item {
    background-color: #2C2B29;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Add space between elements vertically */
    align-items: center;
    height: 100%; /* Ensure the height stretches to distribute the space evenly */
}

.um-grid-item img {
    width: 100%;
    max-width: 150px;
    border-radius: 5px !important;
    margin-bottom: 15px;
}

.um-manual-name {
    font-size: 16px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400 !important;
}

.um-download-btn {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align icon and text */
    justify-content: center; /* Center the content horizontally */
    width: 100%;
    padding: 5px !important;
    background-color: #7DB409 !important;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 400;
    gap: 8px; /* Add space between icon and text */
}

.um-download-btn img {
    width: 20px;
    height: 20px;
    margin: 0; /* Remove any default margin */
}

.um-download-btn:hover {
    background-color: #74A32F !important;
    color: white !important;
}