/*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;
}

.illinois-logo {
    background-image: url('https://parking.illinois.edu/themes/custom/images/BlockI-Logo-Full-Color-RGB.svg');
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    width: 30px;  Adjust width as needed 
    height: 43px;  Adjust height as needed 
}*/
/**/


/*button#ot-sdk-btn.ot-sdk-show-settings {
    background-color: #1E3877;  Set your desired background color 
    border: none;  Remove the border 
    outline: none;  Remove the outline 
    color: #FFFFFF;  Set the text color if needed 
}

    button#ot-sdk-btn.ot-sdk-show-settings:hover,
    button#ot-sdk-btn.ot-sdk-show-settings:focus {
        border: none;  Remove the border on hover/focus 
        outline: none;  Remove the outline on hover/focus 
    }

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/
/* General Styles */
label {
    font-size: 16px;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

h1 {
    margin-top: 20px;
    font-weight: 700
}

/*h2 {*/
/*    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}*/
h2 {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: inherit;
}

/*h3 {
    margin-top: 20px;
    font-size: 1.5rem;
}*/
h3 {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}

table {
    width: 100%;
    border: 2px solid #333;
}

td,
th {
    text-align: center;
    padding: 8px;
}

th {
    background: #13294b;
    color: #ffffff;
    border-right: 2px solid #fff;
}

td {
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
}

/* Buttons */
#Accept {
    border: 2px solid #13294b;
}

    #Accept:hover, #Accept:focus {
        color: #13294b;
        background: #ffffff;
    }

#Reset {
    border: 2px solid #6c757d;
    background: #6c757d;
}

    #Reset:hover, #Reset:focus {
        border: 2px solid #13294b;
        background: #ffffff;
        color: #13294b;
    }

/* Layout Container */
.container {
    width: 100%;
    max-width: 1180px;
    margin-bottom: 30px;
}

/* Form Layout */
.form-row {
    display: grid;
    gap: 20px;
}

.two-per-row {
    grid-template-columns: repeat(2, 1fr);
}

.three-per-row {
    grid-template-columns: repeat(3, 1fr);
}

.six-per-row {
    grid-template-columns: repeat(6, 1fr);
}


.form-group {
    margin-bottom: 20px;
}

h2, h3 {
    margin-top: 30px;
}

/* Lot Space Section */
section#lots-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.lot-container {
    display: grid;
    background: #ededed;
    border: 1px solid #000;
    width: 90%;
    margin-top: 20px;
    padding-bottom: 20px;
}

    .lot-container h3 {
        width: 90%;
        margin: 15px auto 0 auto;
    }

.lot-space-col {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
}

/* Permit CFOAP Section */
section#permits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.permit-container {
    display: grid;
    background: #ededed;
    border: 1px solid #000;
    width: 90%;
    margin-top: 20px;
    padding-bottom: 20px;
}

    .permit-container h3 {
        width: 90%;
        margin: 15px auto 0 auto;
    }

.permit-cfoap-col {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
}


/* Responsive Design */
@media (max-width: 768px) {
    section#lots-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .two-per-row, .three-per-row {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 450px) {
    section#lots-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure full viewport height */
    margin: 0;
}

/* Ensure the header is properly positioned */

/* Space for main content */
main {
    padding-top: 50px;
}

@media (max-width: 768px) {
    main {
        padding-top: 250px;
    }
}

a.dropdown-toggle {
    border: 2px solid #fff;
}

    a.dropdown-toggle:focus {
        border: 2px solid #13294b;
    }



/* Ensure footer stays at the bottom */
/* Hiding nav bar and search bar */
header nav {
    display: none !important;
}
svg.svg-inline--fa.fa-search.fa-w-16 {
    display: none !important;
}