﻿body {
    background-color: #bbb;
}



.main-content {
    background-color: #bbb;
}

.form-container {
    background-color: #f5f5f5;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: column;
}


label {
    margin-bottom: 5px;
}


footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    /* Other footer styles */
}

    footer p {
        margin: 0 auto;
    }

    footer a {
        color: white;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

.intro-text {
    padding: 20px;
    background-color: #f4f4f4; /* Light grey background */
    border-bottom: 2px solid #ddd; /* Bottom border for a subtle separation */
    margin-bottom: 20px; /* Space before the next content */
    text-align: center; /* Center the text */
}

    .intro-text p {
        font-size: 1.5em; /* Slightly larger font size */
        color: #0c0b0b; /* Darker text color for readability */
        margin: 0 auto;
    }

#pageheader {
    font-size: 1.5em;
}

.resized-image {
    width: 25%; /* Adjusts the width to 25% of the original */
    height: auto; /* Maintains the aspect ratio */
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}


.tiny-image {
    width: 0px; /* Adjusts the width to 25% of the original */
    height: 0px; /* Maintains the aspect ratio */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if the container has a specific height */
}
}

#pageheaderblock {
    font-size: 1.3em;
}

.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.result-content, #resultpanel {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
}

.iditems {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Or any other fixed width */
}


input[type="tel"],
input[type="password"],
input[type="text"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 90%; 
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

#submitrequest {
    background-color: #007bff;
    color: white; 
    padding: 10px 10px; 
    border: none;
    border-radius: 4px; 
    font-size: 1em;
    cursor: pointer; 
    transition: background-color 0.3s;
    width: 80%; 
}

    #submitrequest:hover {
        background-color: #0056b3; /* Darker blue on hover */
    }



@media screen and (orientation: portrait) {
    #pageheader {
        font-size: 0.8em;
    }

    #pageheaderblock {
        font-size: 0.6em;
    }

    .form-container {
        width: 90%;
    }

}
