﻿.uppercase {
    text-transform: uppercase;
}

.error {
    color: red;
}

.OptionButtons {
    width: 260px;
    height: 50px;
}

.subOptionButtons {
    width: 200px;
    height: 50px;
}

a.OptionButtons:visited {
    color: white;
}

a.OptionButtons:hover {
    color: white;
}

a.OptionButtons:focus {
    color: white;
}

.titleText {
    font-size: 40px;
    font-weight: bold;
}

.formContainer {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid black;
}

.label-left {
    display: inline-block;
    width: 100px;  /*Adjust width as needed */
    text-align: left;
    padding-right: 10px; /* Add padding for spacing */
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select {
    height: 30px;
    width: 200px;  /*Full width to fit the container */
    padding: 10px;  /*Inner spacing for better readability */
    margin-bottom: 0px !important;  /*Space between elements */
    border: 1px solid #ccc;  /*Border color and style */
    border-radius: 4px;  /*Rounded corners */
    font-size: 16px;  /*Font size for readability*/ 
    box-sizing: border-box;  /*Include padding and border in total width */
}

textarea {
    margin-bottom: 15px !important;
}

.textArea {
    width: 100%;
    padding: 20px;
    border-radius: 4px;
}

.spinner{
    height: 150px;
    width: 150px;
}

#EAAMainLoader {
    top: 150px !important;
}

.custom-dropdown {
    height: 30px;  /*Total height of the dropdown */
    width: 250px;
    line-height: 30px;  /*Line height matches the height to center text */
    padding: 0 5px;  /*Horizontal padding for spacing */
    border: 1px solid #ccc;  /*Optional border */
    border-radius: 4px;  /*Optional rounded corners*/ 
    box-sizing: border-box;  /*Include padding and border in total height */
}



.input-with-label {
    position: relative;
    display: inline-block;
}

.input-with-label input {
    padding-left: 40px;  /*Adjust as needed */
}

.input-with-label label {
    position: absolute;
    left: 10px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
}

.label-cell {
    text-align: left;
}

.input-cell {
    text-align: left;
}

.dropdown-list {
    height: calc(100% - 0.50rem); /* Adjust as needed */
    padding: 0.5rem;  /*Adjust as needed */
    margin: 0;
    width: 200px;
}

.datepicker {
    width: 200px;
}

.selectedButton {
    border: 4px solid black;
    background-color: #005682;
}

.mainSelectedButton {
    border: 5px solid black;
    box-sizing: border-box;
    height: 50px;
    width: 260px;
    background-color: #005682;
    padding-top: 0.6em;
}

.section {
    margin-top: 25px;
    margin-bottom: 25px;
}

.takenBrick {
    font-size: 10px;
    font-weight: bold;
}

@media only screen and (min-width: 1022px) and (max-width: 1077px) {
    .OptionButtons {
        margin: 10px;  /*Increase the margin to ensure buttons do not touch */
        display: inline-block;  /*Maintain inline behavior but allow margin */
        width: 240px;  /*Adjust width as needed to fit the content */
    }

    .grid-x .cell {
        padding: 0 5px;  /*Add padding to the cells if necessary */
    }
}
