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;
}


/* login.css */

/* Styled dropdown */
.custom-select {
    display: block;
    width: auto; /* Adjust dynamically */
    min-width: 400px;
    max-width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}

    /* Focus / hover */
    .custom-select:focus {
        border-color: #0078d7; /* Same blue as login button */
        box-shadow: 0 0 6px rgba(0,120,215,0.4);
        outline: none;
    }
/* site.css */
.styled-dropdown {
    width: auto;
    min-width: 400px;
    max-width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #0078d7; /* match button color */
    border-radius: 6px;
    background-color: #f8f9fa; /* light background, adjust as needed */
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

    .styled-dropdown:focus {
        border-color: #005a9e; /* darker blue border */
        background-color: #e6f0ff; /* light blue background */
        box-shadow: 0 0 4px rgba(0,120,215,0.4);
    }
    
    .styled-dropdown:checked {
        background-color: #ff9800;
    }

        .styled-dropdown option {
            padding: 10px;
        }
.info-box {
    background-color: #FFF4E5; /* pale orange */
    border-left: 4px solid #FF9900; /* accent line */
    padding: 10px 14px; /* tighter padding */
    border-radius: 8px;
    font-size: 13px;
    font-weight: 300 ; /* bold text */
    color: #333;
    margin-bottom: 20px;
    display: inline-block; /* shrink to text width if needed */
    max-width: 600px; /* keeps it neat on wide screens */
    /*background-color: #f0f7ff;*/ /* soft blue background */
    /*color: #004085;*/ /* dark blue text */
    /*border-left: 4px solid #007bff;*/ /* blue accent line */
    /*padding: 12px 18px;
    margin: 20px auto;
    max-width: 500px;
    border-radius: 6px;
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);*/
}
