/* <!-- verification form css --> */
 
    .form-group {
        position: relative;
    }

    #togglePassword {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        cursor: pointer;
    }
    .login-dark {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh; /* Ensures the container is at least the full height of the viewport */
        background: #19375f;
        padding: 20px;
    }
    

    .login-dark form {
        max-width:320px;
        width:90%;
        background-color:#131c26;
        padding:40px;
        border-radius:4px;
        transform:translate(-50%, -50%);
        position:absolute;
        top:50%;
        left:50%;
        color:#fff;
        box-shadow:3px 3px 4px rgba(0,0,0,0.2);
    }

    .login-dark .illustration {
    text-align:center;
    padding:15px 0 20px;
    font-size:100px;
    color:#2980ef;
    }

    .login-dark form .form-control {
    background:none;
    border:none;
    border-bottom:1px solid #434a52;
    border-radius:0;
    box-shadow:none;
    outline:none;
    color:inherit;
    }

    .login-dark form .btn-primary {
    background:#214a80;
    border:none;
    border-radius:4px;
    padding:11px;
    box-shadow:none;
    margin-top:26px;
    text-shadow:none;
    outline:none;
    }

    .login-dark form .btn-primary:hover, .login-dark form .btn-primary:active {
    background:#214a80;
    outline:none;
    }

    .login-dark form .forgot {
    display:block;
    text-align:center;
    font-size:12px;
    color:#6f7a85;
    opacity:0.9;
    text-decoration:none;
    }

    .login-dark form .forgot:hover, .login-dark form .forgot:active {
    opacity:1;
    text-decoration:none;
    }

    .login-dark form .btn-primary:active {
    transform:translateY(1px);
    }
    .footer {
        margin-top: auto; /* Pushes the footer to the bottom if there's enough content above */
        text-align: center;
        padding: 20px;
        background-color: #000;
        color: white;
        width: 100%;
        border-radius: 5px;
    }

  
    #counter {
        font-size: 2em;
        font-weight: bold;
        transition: transform 0.2s ease-in-out; /* Smooth scaling effect */
    }

    #counter.animate {
        transform: scale(1.1); /* Slight zoom for visual feedback */
    } 

/* <!-- form detials css --> */
 
  
    @media(max-width:767px){ 

      .form-group {
      flex-direction: column !important;
      width: 100% !important;
      /* margin: 0 !important;  */
     }

      #confirm_btn {
        
        width: 100%;
      }

      
      .form-group input {
        margin-right: 0 !important;
        margin-bottom: 5px;
        width: 100% !important;
      }
      .form-group select {
        margin-bottom : 5px;
      }
      .form-group button {
        width: 100% !important;
       }
        .form-inline .form-group {
            width:100%
        }
        #button-container {
          width: 100%;
          display: flex;
          justify-content: center;
        }

        .table-dark{
          display: block;
          overflow: auto;
        }
 
    }
 
    body{
      margin-top:20px;
      color: #214a80;
      text-align: left;
      background-color: #19375f;    
     }
      .main-body {
          padding: 15px;
      }
      .card {
          box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
      }

      .card {
          position: relative;
          display: flex;
          flex-direction: column;
          min-width: 0;
          word-wrap: break-word;
          background-color: #fff;
          background-clip: border-box;
          border: 0 solid rgba(0,0,0,.125);
          border-radius: .25rem;
      }

      .card-body {
          flex: 1 1 auto;
          min-height: 1px;
          padding: 1rem;
      }

      .gutters-sm {
          margin-right: -8px;
          margin-left: -8px;
      }

      .gutters-sm>.col, .gutters-sm>[class*=col-] {
          padding-right: 8px;
          padding-left: 8px;
      }
      .mb-3, .my-3 {
          margin-bottom: 1rem!important;
      }

      .bg-gray-300 {
          background-color: #e2e8f0;
      }
      .h-100 {
          height: 100%!important;
      }
      .shadow-none {
          box-shadow: none!important;
      }
  
 
    .card-header-title {
      flex-grow: 1;
      font-weight: 700;
      font-size: 20px;
      text-align: center; 
    }
 
    .loading_div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh; /* Adjust the height to suit your needs */
        position: fixed;
        top: 60;
        left: 0;
        right: 0;
        bottom: 0;
        /* background-color: rgba(255, 255, 255, 0.5); semi-transparent background */
        z-index: 9999;
        }

    .loading_div .loder_img {
        height: 80px;
    }
    .rounded-circle {
      border-radius: 50% !important;
      /*height: 136px;*/
      object-fit: contain;
      background-color: #ededed;
    }
    .mb-0 {
      margin-bottom:0!important;
      font-weight: 600!important;
    }

    .get_details {
      color: #fff; 
      text-align: center;
      padding: 20px;
      font-weight: 600;
    } 
    .do_box{
      background:#25212b;
      padding : 20px;
      border-radius:5px;
      border: 1px solid white;
    }
    
    .modal-content {
        background-color: #182b43; /* Dark background */
        border-radius: 8px;
        color: #ecf0f1; /* Light text color */
        border: 1px solid #fff;
    }

    /* Modal header styling */
    .modal-header {
        border-bottom: 1px solid #34495e;
    }

    .modal-title {
        color: #ecf0f1;
    }

    /* Close button styling */
    .close {
        color: #ecf0f1;
        opacity: 0.8;
    }

    .close:hover {
        opacity: 1;
    }

    /* Input fields styling */
    .form-control {
      background-color: #000; /* Dark input background */
      color: #ecf0f1; /* Light text */
      /* border: 1px solid #34495e; */
      border-radius: 4px;
      padding: 8px; /* Slightly smaller padding */
    } 
    .form-control:disabled, .form-control[readonly] {
        background-color: #000; 
    }

    /* Button styling */
    .btn {
        padding: 6px 12px; /* Smaller button size */
        border-radius: 4px;
        transition: all 0.3s ease;
        font-size: 0.9rem; /* Slightly smaller font */
    }

    .btn-primary {
        background-color: #2980b9;
        border-color: #2980b9;
    }

    .btn-danger {
        background-color: #c0392b;
        border-color: #c0392b;
    }

    /* Button hover effects */
    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #1f639a;
        border-color: #1f639a;
        box-shadow: 0 0 10px rgba(41, 128, 185, 0.8); /* More pronounced blue shadow */
    }

    .btn-danger:hover,
    .btn-danger:focus {
        background-color: #a83224;
        border-color: #a83224;
        box-shadow: 0 0 10px rgba(192, 57, 43, 0.8); /* More pronounced red shadow */
    }

    /* Modal footer styling */
    .modal-footer {
        border-top: 1px solid #34495e;
    }

    /* Modal padding adjustments */
    .modal-body {
        padding: 15px 20px;
    }
 
      /* Center the modal title */
.modal-title {
    text-align: center;
    width: 100%;
    font-weight:600;
}

/* Override default Bootstrap modal-header alignment */
.modal-header {
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Ensure close button doesn't affect centering */
.modal-header .close {
    position: absolute;
    right: 15px;
    top: 15px;
}
