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 #fff;
}

.btn:focus {
    background-color: white;
    color: black;
}

.btn:hover {
    background-color: white;
    color: black;
    border-color: grey;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.custom-dropdown {
    font-size: 20px; /* Adjust the font size */
    padding: 10px; /* Add some padding */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #ced4da; /* Border color similar to Bootstrap's form controls */
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background-color: #fff; /* Background color */
    width: 100%; /* Full width */
    max-width: 400px; /* Maximum width, you can adjust it */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    margin-bottom: 20px; /* Margin to separate from other elements */
    margin-top: 10px;
}

.dropdown-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Keeps horizontal centering */
    align-items: center; /* Center items horizontally */
    height: auto; /* Adjusts the height to be automatic, based on content */
}

.spinner-border {
    margin-top: 20px; /* Adds space between the dropdown and the spinner */
}

.quotes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center items vertically */
    width: 100%;
    max-width: 800px;
    margin-bottom: 10px;
    border-top-style: none;
}

    .list-group-item span {
        font-weight: bold;
        font-family: roboto-bold, roboto-light, roboto-medium, roboto-italic, "Helvetica Neue", Verdana, Arial, sans-serif;
    }

.button-container {
    display: flex;
    gap: 10px;
}

.fixed-size-button {
    width: 250px; /* Set a fixed width */
    height: 50px; /* Set a fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    margin-left: 10px;
    background: #4a1477;
    border-color: #4a1477;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: bold;
    letter-spacing: 1.3px;
    padding: 5px;
    border-radius: 30px;
    font-family: roboto-bold, roboto-light, roboto-medium, roboto-italic, "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* Retain styling for disabled buttons */
.btn:disabled, .btn[disabled] {
    background: #4a1477;
    border-color: #4a1477;
    color: #fff;
    opacity: 0.6; /* Adjust opacity to indicate disabled state */
    cursor: not-allowed; /* Change cursor to indicate button is disabled */
}

.footer {
    background: #1c1b1c;
    color: white;
    text-align: center;
}

.header {
    height: 33px;
    width: auto;
    background: black;
}

#img_logo {
    height: 100px;
}

.wait-cursor {
    cursor: wait;
}
