
* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.149) 0%, rgba(0, 0, 0, 0.625) 100%), url("/img/order-display/bg-order-display.jpg"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center; 
 }
/*header*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    height: 100px; 
    padding: 20px;  position: relative;
    z-index: 10; 
}

.title {
    color:white;
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}
.user-info {
    gap: 10px;
    color: white;
    margin-top:20px;
    margin-left: -30px;
}

.user-icon {
    font-size: 25px;
    color: white;
    margin-right: 4vw;
}

.username {
    font-size: 15px;
    background-color: white;
    color:black;
    border-radius: 5px;
    padding:1vw 2vw;
}
/*main*/
.container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.401);
    height: 75vh;
    position: absolute;
    top:60px;
    z-index: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: black;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding:10px;
    margin-top:3vw;
    z-index: 20;
}

.search-input {
    border:1px solid white;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    flex-grow: 1;
    background-color:  black;
    z-index: 20;
    color: white;
}

.grid-container {
    display: grid;
    gap: 10px; 
}
.row {
    display: grid;
    grid-template-columns:  repeat(4, 1fr) 25px; 
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
   margin: 0 5px;
   z-index: 1;

}

.row div {
    padding: 7px;
    text-align: center;
    font-size: 12px;
    color: white;
}

.row i {
    color: #ffcc00ff;
}
.container-grid {
    grid-template-columns: repeat(4, 1fr) 25px; 
    border: 2px solid white;
    border-radius: 10px;
    margin: 0 5px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.897);
}

.title-grid {
    grid-template-columns: 1fr;
   justify-self: center;
   font-size: 14px;
   color: white;
   z-index: 1000;
   margin-top: 2vw;
   color: #ffcc00ff;
}

.row1 {
    color:#ffcc00ff;
    display: grid;
    grid-template-columns:  repeat(4, 1fr) 25px; 
    border-radius: 10px;
    overflow: hidden;
    margin: 0 5px;
    z-index: 1;
    margin-left: 40px;
    font-size: 12px;
}
.row-grid {
    color:#ffcc00ff;
    display: grid;
    grid-template-columns: 1fr; 
    border-radius: 10px;
    overflow: hidden;
    grid-template-columns: 1;
    z-index: 1;
   font-size: 12px;
}

.row-data {
    display: grid;
    grid-template-columns:  25px 1fr 25px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px;
    z-index: 1;
    color: white;
    font-size: 12px;
    border-bottom: 1px solid grey;
    margin-top: 1vw;
    margin-bottom: 5vw;
}

.search-button {
    background-color: black;
    color: white;
    border: 1px solid white;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    z-index: 20;
}

.search-button:hover {
    background-color: fuchsia;
}
/*footer*/
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
  }
  
  .footer div {
    font-size: 16px;
  }