/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/
/*For Phone Input*/
.iti {
    width: 100% !important; /* Ensure the container respects Bootstrap grid */
}

    .iti input {
        width: 100% !important; /* Ensure the input respects parent container */
        box-sizing: border-box; /* Include padding and border in width */
    }


/* Change the width of the dropdown */
.iti__country-list {
    width: 300px !important; /* Adjust the width as needed */
}

/* Customize the appearance of each country option */
.iti__country {
    background-color: #f5f5f5; /* Default background color */
    color: #333; /* Default text color */
}

    /* Add hover effect on dropdown items */
    .iti__country:hover {
        background-color: #007bff; /* Hover background color */
        color: forestgreen; /* Hover text color */
    }

    /* Customize the active/selected item */
    .iti__country.iti__active {
        background-color: #004085 !important; /* Active background color */
        color: #ffffff !important; /* Active text color */
    }

/* Change hover background color and text color for striped rows */
.table-hover tbody tr:hover {
    background-color: white; /* Custom hover background color */
    color: #000; /* Custom text color */
}