@import url('https://fonts.googleapis.com/css?family=Montserrat|Open+Sans|Roboto');

/* Desktop/Tablet Styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
    box-shadow: 0 2px 15px rgba(64, 64, 64, 0.7);
    border-radius: 12px;
    overflow: hidden; /* Hide horizontal scrollbar if any */
    width: 100%; /* Make table full-width */
    max-width: 800px; /* Limit maximum width for better readability */
    margin: 0 auto; /* Center the table */
}

td, th {
    text-align: center;
    padding: 10px;
}

th {
    background-color: #11101D;
    color: #fafafa;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    text-transform: uppercase;
}

tr {
    width: 100%;
    background-color: #adadad;
    font-family: 'Montserrat', sans-serif;
}

tr:nth-child(even) {
    background-color: #eeeeee;
}

/* Style for images inside table cells */
td img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure images are block-level */
    margin: 0 auto; /* Center images */
    min-width: 150px; /* Set a minimum width */
}

/* Mobile Styles */
@media only screen and (max-width: 600px) {
    td, th {
        padding: 5px;
        font-size: 8px; /* Adjust font size for better readability */
    }
    td img {
        min-width: 80px; /* Adjust the minimum width for smaller screens */
    }
}
