* {
    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/suppliers-orders/background.avif"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center; 
 
}

.header {
    display: flex;
  justify-content: space-between;
  align-items: center; 
  height: 100px; 
  padding: 20px;  position: relative;
  z-index: 10; 
}

.logo {
    margin:-15px;
}
.title {
    color:white;
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}
.user-info {
    color: white;
    margin-top:20px;
    margin-right:-20px;
}

.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;
    text-decoration: none;
}
.container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    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;
    z-index: 20;
    color: white;
    margin-top: 20px;
    text-decoration: none;

}

.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;
    margin-left: 5px;

}
.title-secondary {
    color: rgb(248, 248, 248);
    font-size: 5vw;
    margin: 3vw 2vw;
    z-index: 10;
    position: relative;

}
.title-secondary2 {
    color: rgb(252, 98, 43);
    font-size: 5vw;
    margin-left:2vw;
    z-index: 10;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;

}

.grid-container {
    display: grid;
    gap: 10px; 
}
.row {
    display: grid;
    grid-template-columns:  1fr 2fr 2fr 1fr 1fr;
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 5px;
    z-index: 40;
    position: relative;
    text-decoration: none;
}


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

.row1 {
    color:#ffcc00ff;
    display: grid;
    grid-template-columns:  1fr 2fr 2fr 1fr 1fr; 
    border-radius: 10px;
    overflow: hidden;
    z-index: 50;
    position: relative;
    margin-left: 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

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

}

.search-button:hover {
    background-color: white;
    color:black;
}
.row div:nth-child(5) {
    color:orangered;
}
.ok{
    color:rgb(162, 240, 45); 
}
span {
    color:white;
}

.dash {
    font-weight: bold;
    color: #ffcc00ff;
    font-size: 25px;
}

.date {
    margin-left:-20px;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.774);
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); 
    z-index:1000;
    margin-top:20px;
  }

  .footer-container {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex;
    justify-content: space-evenly; 
    align-items: center; 

  }
  .footer-item {
    display: flex;
    align-items: center;
    padding: 0 30px; 
    border-right: 2px solid white; 
}

.footer-item:last-child {
    border-right: none; 
}
 
