/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 200px;
    background-color: #333;
    color: white;
    padding: 20px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px;
    font-size: 18px;
}

.sidebar ul li a:hover {
    background-color: #575757;
}

/* Main Content Styles */
.main-content {
    flex-grow: 1;
    margin-left: 200px;
    background-color: #fff;
    min-height: 100vh;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.status-block {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-grid;
}

.status-form {
    width: 400px;
   display: inline-block;
}
/* Form Input Styles */
form input,
form select,
form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

form input[type="text"],
form input[type="number"] {
    font-size: 16px;
}

form button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background: #0056b3;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-sizing: border-box;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

table th {
    background-color: #f4f4f9;
    font-weight: bold;
}
td a {
    text-decoration: none;
    color:white;
}
td a:hover {
    color: #f03221;
    text-decoration: none;
}


/* Link Styles for Delete Actions */
a {
    color: #f03221;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.user-dropdown {
    position: relative;
  }
  
  .user-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 150px;
    z-index: 1000;
  }
  
  .user-dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .user-dropdown .dropdown-item {
    padding: 5px 20px;
    text-decoration: none;
    color: #333;
  }
  
  .user-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color:#f03221;
  }
  
  .user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
  }
  .dashboard-content {
    min-height: 300px;
    padding-top: 50px;
    padding-left: 10px;
    
  }
  .order-form {
    text-align: center;
  }

.order-form form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 80%;
    display: inline-block;
    text-align: left;
}
.order-form form  .form-label {
    margin-bottom: 0px;
}
.timeline-item-content .data h4{
    font-size: 20px;
    margin: 0px;
    padding: 10px;
}
.form-select option:nth-last-of-type(1),.form-select option:nth-last-of-type(3),.form-select option:nth-last-of-type(4),.form-select option:nth-last-of-type(6),.form-select option:nth-last-of-type(8) {
    font-weight: 600;
    color:#333;
}
.timeline-item-content .data:nth-last-of-type(2) h4 {   
    font-weight: 600;
}