/* This wraps the content and does the vertical + horizontal centering */
.fullscreen-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Login box styling */
  .login-container {

    max-width: 500px;
    width: 100%;
  }

  .logo {
    max-width: 70% !important;
    margin: 0 auto 20px;
  }

  .role-buttons .btn {
    margin: 5px;

  }


  .form-control {
    font-size: 13px;
    padding: 10px;
  }

  .btn-login {
    background-color: #6b4eff;
    color: #fff;
    border: none;
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .btn-login:hover {
    background-color: #fff;
    color: #6b4eff;
    border: 1px solid #6b4eff !important;
  }



  .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .button1{
    background-color: #E8F0FE;
    padding:10px 20px !important;
    font-weight:bold;
  }
  .button1:hover{
  border: 1px solid  #6b4eff;
  }

  .button2{
    background-color:   #6b4eff;
    padding:10px 20px !important;
    font-weight:bold;
    color:white;
  }
  .button2:hover{
 border: 1px solid #6b4eff;
  background-color: #E8F0FE;
  }


  @media(max-width:768px){
      /* Login box styling */
  .login-container {


    width: 100% !important;
  }
  }
/* ================================================================================================================================sidebar and other content */
body {

    background-color: #f9f9ff;
  }

  .main-container {
    display: flex;
    min-height: 100vh;
    transition: all 0.3s ease;
  }

  /* Sidebar */
  .sidebar {
    width: 250px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .sidebar.collapsed {
    width: 65px;
  }

  .sidebar.collapsed .nav a span,
  .sidebar.collapsed .user p,
  .sidebar.collapsed .logo img,
  .sidebar.collapsed .toggle-icon span {
    display: none;
  }

  .sidebar .logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .sidebar .logo img {
    max-width: 100%;
    height: auto;
  }

  .sidebar .nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sidebar .nav a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sidebar .nav a.active {
    background-color: #6b4eff;
    color: white;
    padding: 8px 8px;
    border-radius: 8px;
  }


  .sidebar .user {
    text-align: center;
    margin-bottom: 10px;
  }

  .sidebar .user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .sidebar .user p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #555;
  }

  .toggle-icon {
    text-align: center;
    cursor: pointer;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    color: #6b4eff;
  }

  .content {
    flex: 1;
    padding: 40px;
    transition: margin-left 0.3s ease;
  }

  .content h2 {
    font-weight: bold;
    margin-bottom: 30px;
  }

  .file-upload {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
  }

  .file-upload i {
    font-size: 36px;
    color: #6b4eff;
    margin-bottom: 10px;
  }

  .file-upload p {
    margin: 0;
    font-size: 14px;
  }

  .file-upload button {
    margin-top: 10px;
    background-color: #6b4eff;
    color: white;
    border: none;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 14px;
  }

  .btn-next {
    background-color: #6b4eff;
    border: none;
    color: white;
    padding: 10px 40px;
    border-radius: 8px;
    font-weight: bold;
  }
  #drop-area {
position: relative;
border: 2px dashed #ccc;
border-radius: 10px;
padding: 40px;
text-align: center;
margin-bottom: 30px;
transition: border-color 0.3s ease;
}

#drop-area.dragover {
border-color: #6b4eff;
background-color: #f0f0ff;
}

  @media (max-width: 768px) {
    .content {
      padding: 20px;
    }

    .file-upload {
      padding: 20px;
    }
  }


  /* ================================================================================================================================sidebar and other content end */
  .form-title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;

    margin-bottom: 30px;
  }

  .form-label {
    font-weight: 500;
    font-size: 14px;
  }

  .form-control,
  .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 14px;
    color: #555;
  }

  .form-control::placeholder {
    color: #bbb;
  }

  .form-select {
    color: #555;
  }

  textarea.form-control {
    height: 100px;
  }

  .btn-clear {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 30px;
  }

  .btn-clear:hover {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 30px;
  }
  .btn-submit {
    background-color: #5f3dc4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 30px;
  }

  .btn-submit:hover {
    background-color: #4b2eb1;
    color:white !important;
  }

  .form-section {

    margin: auto;
    padding: 40px 20px;
  }

  .form-check-icon {
    position: absolute;
    top: 75%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #0ca678;
  }

  .position-relative .form-control,
  .position-relative .form-select {
    padding-left: 35px;
  }

  /* --------------------------------------------------------------------------------------customer ordwer status */

  .section-title {

    font-weight: bold;
  }

  .section-subtitle {
    color: #20c997;
    font-size: 15px;
    margin-bottom: 30px;
  }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .filter-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: white;
    font-size: 14px;
    color: #555;
    box-shadow: 0 0 4px rgba(0,0,0,0.05);
  }

  .filter-btn.active {
    border: 2px solid #845ef7;
    background-color: #f3f0ff;
    color: #512da8;
  }

  .filter-btn i {
    font-size: 16px;
  }

  .search-input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    box-shadow: 0 0 4px rgba(0,0,0,0.05);
  }

/*  .table-container {*/
/*    background-color: white;*/
/*    border-radius: 20px;*/

/*    box-shadow: 0 0 8px rgba(0,0,0,0.05);*/
/*    padding:2%;*/
/*  }*/

/*@media(max-width:768px){*/
/*    .table-container {*/
/*        width:40vw !important;*/

/*    }*/

/*}*/

  .table th, .table td {
    /*vertical-align: middle;*/
    font-size: 14px;
  }

  .table th {
    color: #333;
  }

  .status-badge {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
  }

  .status-active {
    background-color: #d1f7ed;
    color: #0ca678;
  }

  .status-inactive {
    background-color: #ffe3e3;
    color: #f03e3e;
  }

  .form-select-sm {
    width: 180px;
  }

  .filter-bar .input-group {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
  }

  /* ------------------------------------------------------------------------------------------------customer order status update */

  .status-form-container {
    max-width: 450px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .status-form-container h2 {
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
  }

  .status-form-container p {
    font-size: 0.9rem;
    text-align: center;
    color: #777;
    margin-bottom: 30px;
  }

  .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .form-control, .form-select {
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
  }

  .form-control:focus, .form-select:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 0.1rem rgba(108, 99, 255, 0.25);
  }

  .paid-badge {
    color: #28a745;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
  }

  .paid-badge::before {
    content: "✔️";
    margin-right: 6px;
    font-size: 1rem;
  }

  .btn-cancel {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-weight: 500;
  }

  .btn-update {
    background-color: #6c63ff;
    color: #fff;
    font-weight: 500;
  }

  .btn-update:hover {
    background-color: #5a54e6;
  }

  .form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 25px;
  }
/* --------------------------------------------------------------------------------------------------------customer order status update---- */
.form-wrapper {

    margin: 2% 5%;
  }

  .form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
    /*padding: 16px 0;*/

      padding:0 !important;
      margin: 0 !important;
      margin-top: 10px !important;

  }

  .form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    flex: 1;
  }

  .form-value {
    flex: 1;
    text-align: right;
  }

  .form-value input {
    border: none;
    background-color: transparent;
    text-align: right;
    width: 100%;
    font-size: 14px;
    color: #a0a0a0;
  }
select{

    background-color: transparent;

    width: 100%;
    font-size: 14px;
    color: #a0a0a0;
    padding:10px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
}
  .form-value input:focus {
    outline: none;
  }

  ::placeholder {
    color: #a0a0a0;
    font-weight: 400;
  }

  .form-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 25px;
    width:100%;

  }
.hlllo{
  padding:10px 10px !important;
}
.hlllo:hover{
  border: 1px solid #6c63ff !important;
}


/* ---------------------customer-order-status-update01------------------ */



.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    padding: 10px 12px;
    margin-bottom: 40px;
  }

  .input-wrapper i {
    margin-right: 10px;
    color: #999;
  }

  .input-wrapper input {
    border: none;
    outline: none;
    font-size: 14px;
    flex: 1;
    background-color: transparent;
    color: #555;
  }

  .btn-next {
    background-color: #5b28da;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-next:hover {
    background-color: #4a1ec1;
  }


  /* ------------------------------------------------------------------------------sucess01 */
  .success-body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-container {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    width: 100%;
    max-width: 400px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
  }

  .success-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2ecc71;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-icon img {
    width: 50px;
    height: 50px;
  }

  .success-content {
    margin-top: 60px;
  }

  .success-title {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
    color: #000;
  }

  .success-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
  }

  .success-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .success-btn i {
    font-size: 16px;
  }

  .download-link {
    margin-top: 20px;
  }

  .pdf-link {
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    font-weight: 500;
  }
