
body {
      background: linear-gradient(135deg, #3a7bd5, #00d2ff);
      /*min-height: 100vh;
      display: flex;*/
      align-items: center;
      justify-content: center;
      font-family: "Segoe UI", sans-serif;
    }
    /* Index Page*/

    .login-card {
      max-width: 420px;
      width: 100%;
      padding: 2rem;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      animation: fadeInUp 0.8s ease;
    }
    .login-card h3 {
      font-weight: 700;
      color: #333;
    }
    .form-control {
      border-radius: 10px;
      transition: 0.3s;
    }
    .form-control:focus {
      box-shadow: 0 0 0 0.25rem rgba(58,123,213,0.25);
      border-color: #3a7bd5;
    }
    .btn-login {
      border-radius: 12px;
      padding: 12px;
      font-weight: 600;
      background: linear-gradient(135deg, #3a7bd5, #00d2ff);
      border: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(58,123,213,0.3);
    }
    .input-group-text {
      background: #eef6ff;
      border-radius: 10px 0 0 10px;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* Index*/


.action-btn {
    min-width: 90px;          /* Make buttons wider */
    padding: 8px 16px;        /* Increase padding */
    border-radius: 50px !important;      /* Fully rounded / pill shape */
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Optional: Different colors for outline buttons */
.btn-outline-danger.action-btn:hover {
    background-color: #dc3545; /* Fill color on hover */
    color: #fff;
    border-color: #dc3545;
}

/* Dropdown search style */

.select_autosearch .select2-container--default .select2-selection--single .select2-selection__arrow {

   
    top: 6px !important;
   
}
.select_autosearch .select2-container--default .select2-selection--single .select2-selection__rendered {
   
    line-height: 36px !important;
}
.select_autosearch .select2-container .select2-selection--single {
    height: 36px !important; 
   
}
.select_autosearch .select2-container--default .select2-selection--single .select2-selection__clear
{
    height: 36px;
}
.select_autosearch .select2-container--default .select2-selection--single {
   
    border: 1px solid #dee2e6;
    
}
/* Dropdown search style */
