.food-box {
    background-color: #1c1c1c;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    border: 1px solid #3b3b3b;
}

.food-box h4 {
    margin-bottom: 10px;
    color: #ffffff;
}

.equal-width {
    width: 100%;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

.mt-3 {
    margin-top: 2rem !important;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}