@font-face {
    font-family: glovo;
    src: url("/adminKit/css/glovo.woff2");
}

.flex {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
height: 50vh;
display: flex;
flex-direction: column;
border: solid 1px #eee;
}

.top-row {
flex: 9; /* 90% of the height */
background-color: #f0f0f0; /* Add your desired background color */
padding: 10px;
box-sizing: border-box;
}

.bottom-row {
flex: 1; /* 10% of the height */
background-color: #ffc244; /* Add your desired background color */
padding: 10px;
box-sizing: border-box;
font-family: glovo;
}
.bg{
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.bottom-row{
font-size: 0.7em;
}
.glovo{
    font-family: glovo;
}
.par-button {
    --primary: #1e856f;
    --primary-focus: #186857;
    --secondary: #e2f8f3;
    --secondary-focus: #b0e8dc;
    --primary-text: #fff;
    --secondary-text: #186857;
    --outline: #186857;
    background-color: var(--primary);
    color: var(--primary-text);
    cursor: pointer;
    z-index: 0;
    border: 4px solid transparent;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    transition: background-color .5s;
    font-family: glovo;
    margin-left: 15px;
    
}
.orderNumber{
    background-color: #ffc244;
    font-family: glovo;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    position: relative;
    top:6px;
}
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* exactly 4 equal columns */
    gap: 0; /* or adjust as needed */
    width: 100%;
    height: 100vh; /* optional: fill the full viewport height */
   
  }
  
.grid-item {

    width: 25%;     /* each takes full width of its grid cell */
       /* optional: stretch to match cell height */
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
  }

.grid-item--site .flex {
    border: 4px solid #C5EDAC;
    border-radius: 8px;
}

.grid-item--site .top-row {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: #C5EDAC;
}

.grid-item--site .bottom-row {
    background-color: #C5EDAC;
    color: #000;
}

.grid-item--site .orderNumber {
    background-color: #C5EDAC;
    color: #000;
}
