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%;
}
input[type="checkbox"] {
    margin-right: 5px; /* Adjust as necessary */
    vertical-align: middle; /* Ensures better alignment */
}

body {
  margin-bottom: 60px;
}
/* Optional: Custom styles for the popup */
/* Popup Styling */
#quotePopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    #quotePopup .bg-white {
        width: 100%;
        max-width: 500px; /* Reduced the max-width */
        margin: auto;
        padding: 1.5rem; /* Reduced padding for smaller size */
        border-radius: 8px; /* Slightly smaller border radius */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better appearance */
    }

        #quotePopup .bg-white input, #quotePopup .bg-white textarea {
            width: 100%;
            padding: 8px; /* Reduced padding inside input and textarea */
            margin-top: 8px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        #quotePopup .bg-white button {
            padding: 10px 16px; /* Reduced padding for buttons */
            border-radius: 8px;
            font-size: 14px; /* Slightly smaller font size */
            cursor: pointer;
        }

/* Make sure the modal is responsive */
@media (max-width: 640px) {
    #quotePopup .bg-white {
        max-width: 80%; /* Adjust width on smaller screens */
    }
}
