/* Navbar Fixes */
.navbar {
    padding: 0.5rem 0.75rem;
}

.navbar-brand img {
    max-width: 180px;
    height: auto;
}

.input-group {
    max-width: 500px;
    min-width: 200px;
}

.btn-outline-danger {
    white-space: nowrap;
    min-width: 110px;
    text-align: center;
}

.dropdown-menu {
    margin-top: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Mobile Optimization */
@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .input-group {
        margin-bottom: 1rem;
        width: 100% !important;
    }
    
    .btn-outline-danger {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .dropdown {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-width: 140px;
    }
    
    .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .badge {
        font-size: 0.6rem;
        padding: 0.25em 0.5em;
    }
}
.notification-container {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the viewport */
    right: 20px; /* Distance from the right */
    z-index: 1050;
    display: flex;
    flex-direction: column; /* Stack alerts vertically */
    gap: 10px; /* Space between alerts */
}

/* Custom alert styling */
.custom-alert {
    width: 350px; /* Adjust for readability */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background for a modern feel */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
    border-radius: 8px; /* Smooth corners */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow for depth */
    font-family: 'Arial', sans-serif; /* Clean font */
    padding: 15px; /* Add padding for better spacing */
    color: #333; /* Dark text for contrast */
}

/* Success messages */
.alert-success {
    background-color: #dff0d8; /* Light green background */
    color: #3c763d; /* Dark green text */
}

/* Error messages */
.alert-danger {
    background-color: #f2dede; /* Light red background */
    color: #a94442; /* Dark red text */
}

/* Warning messages */
.alert-warning {
    background-color: #fcf8e3; /* Light yellow background */
    color: #8a6d3b; /* Brownish text */
}

/* Info messages */
.alert-info {
    background-color: #d9edf7; /* Light blue background */
    color: #31708f; /* Dark blue text */
}

/* Fade-out animation */
.fade-out {
    animation: fadeOut 4s ease forwards; /* Duration adjusted for smoother effect */
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0); /* Initial position */
    }
    70% {
        opacity: 1; /* Maintain visibility */
        transform: translateY(-5px); /* Slight lift for a floating effect */
    }
    100% {
        opacity: 0;
        transform: translateY(-20px); /* Move upward while fading out */
        display: none;
    }
}
.btn{
    padding:2px 1.75em;
    font-size:12px ;
    cursor:pointer;
}
.attachment-full {
    width: 100%;
    height: auto;
}
.payment-method1 input[type=radio]{
    position:absolute;
    opacity:0;
    width:0;
    height:0;
  }

  /* Image-style*/
  .payment-method1 input[type=radio]+img{
      cursor:pointer;
      padding:5px ;


  }
  /* checked style*/
  .payment-method1 input[type=radio]:checked+img{
      outline:2px solid black ;
  }
  .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-holder {
    width: 100px;  /* Fixed width */
    height: 100px; /* Fixed height */
    overflow: hidden; /* Hide overflow */
    border-radius: 8px; /* Optional: rounded corners */
}

.image-holder img {
    width: 100%;    /* Fill container width */
    height: 100%;   /* Fill container height */
    object-fit: cover; /* Crop to fit */
    display: block; /* Remove inline spacing */
}
.custom-pagination-wrapper {
  font-family: 'Poppins', sans-serif;
}

.pagination-btn {
  padding: 6px 12px;
  border: 1px solid #007bff;
  border-radius: 4px;
  color: #007bff;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.pagination-btn:hover {
  background-color: #007bff;
  color: #fff;
}

.pagination-btn.active {
  background-color: #007bff;
  color: #fff;
  cursor: default;
}

.pagination-btn.disabled {
  background-color: #e0e0e0;
  color: #888;
  border-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}


    /* .card {
        transition: transform 0.2s;
    }
    .card:hover {
        transform: translateY(-2px);
    }
    .table-hover tbody tr:hover {
        background-color: rgba(0,123,255,0.05);
    }
    .bg-light {
        background-color: #f8f9fa!important;
    } */


/* Optional: smooth shadow */
