*/ .container {
    max-width: 600px;
    margin-top: 50px;
}

.navbar {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(245, 245, 245) 100%);
    animation: gradient 3s ease infinite;
}

.nav-button.active {
    background-color: #e06025;
    /* Change this to your preferred color */
    color: white;
}
.mt-5, .my-5{
    margin-top: 5rem !important;

}

.form-group {
    margin-bottom: 15px;
}

.btn-primary {
    background-color: black;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    border: none;
    border: 2px solid black;

}
.btn-primary:hover{
    background-color: white;
    color: #000000;
    border: 2px solid black;


}

/* New styles for the tabs */
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .nav-link.active {
    color: #000000;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    /* border-bottom: 2px solid #007bff; */
}

/* Styles for the cards */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 5px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 2px 16px;
}

/* Styles for the loading animation */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Styles for the order items */
.order-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

@keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }
  

.order-item h2 {
    margin-bottom: 10px;
}

.order-item p {
    margin-bottom: 0;
}

/* Styles for the search input */
#searchInput {
    margin-bottom: 20px;
}

/* admin.css */
/* admin.css */

body {
    /* background: linear-gradient(90deg, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    animation: gradient 3s ease infinite; */
}

@keyframes gradient {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 100%;
    }
}

.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-link {
    cursor: pointer;
}

.nav-link.active {
    color: #000000;
    /* Change this to your preferred color */
}

.order-item {
    border: 1px solid #ccc;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: .25em;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.order-item h2 {
    font-size: 1.2em;
    margin-bottom: .5em;
}

.order-item p {
    margin-bottom: .5em;
}

.order-item button {
    margin-right: .5em;
}