body {

    background-color: #045EDA !important;
}
.container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #045EDA;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    text-align: center;
}

#shuffle-btn {
    width: 100%;
    background: linear-gradient(45deg, #2a6917, #519421);
    border-radius: 10px;
    border: 1px solid black;
    color: #fff;
    padding: 15px;
    border-color: transparent;
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

#shuffle-btn:disabled {
    background: linear-gradient(45deg, #8B0000, #FF5733);
    opacity: 0.6;
    cursor: not-allowed;
    color: #ccc;
}

#minas {
    width: calc(50% - 5px);
    float: left;
    background-color: #0b3d7a;
    border-radius: 10px;
    height: 55px;
    margin-bottom: 5px;
    text-align: center;
    padding: 5px;
    margin-right: 5px;
    margin-bottom: 15px;
}

#validade {
    width: calc(50% - 5px);
    float: left;
    background-color: #0b3d7a;
    border-radius: 10px;
    height: 55px;
    text-align: center;
    padding: 5px;
    margin-left: 5px;
    margin-bottom: 15px;
}

#minas-text {
    font-size: 10px;
    margin: 0;
}

#minas-value {
    font-size: 16px;
    margin: 0;
}

#validade-text {
    font-size: 10px;
    margin: 0;
}

#validade-value {
    font-size: 16px;
    margin: 0;
}

#status {
    width: 100%;
    float: left;
    background-color: #0b3d7a;
    border-radius: 10px;
    height: 55px;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
}

#status-text {
    font-size: 10px;
    margin: 0;
}

#status-value {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 437px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 438px) {
    .container {
        max-width: 427px;
        width: 100%;
    }
}