html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.float-container {
    padding: 20px;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    justify-content: space-between; /* Spread the children evenly */
}

.form-header {
    padding: 20px 0 0 0;
    display: flex;
    border-bottom: solid;
}

.float-child {
    width: calc(50% - 40px); /* Adjust the width and add padding */
    margin-bottom: 20px; /* Optional: Add margin between the items */
    padding: 20px;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

.form-inquiry {
    margin: 50px 0 50px 0;
}

.div-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container {
    margin-bottom: 20px;
    height: 35px;
    border-radius: 17px;
    display: block;
    padding: 0 10px 5px 0;
    width: 80%;
    border: 1px solid gray;
}

.input-textarea {
    margin-bottom: 20px;
    height: auto;
    border-radius: 17px;
    display: block;
    padding: 0 10px 5px 0;
    width: 80%;
}

#error-message {
    position: absolute;
    bottom: -20px;
    right: 0;
    color: red;
    font-size: 14px;
}

.label {
    font-size: 13px;
    padding-right: 9px;
}

table {
    direction: rtl;
    border-collapse: collapse;
    width: 100%;
    margin: 50px 0 50px 0;
}

th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.back-icon {
    float: left;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .float-child {
        width: 100%; /* Stack divs vertically on screens smaller than 768px */
    }
}

.new-button {
    border-radius: 7px;
    border: solid 1px;
    padding: 5px 10px;
}
