
body, html {
    height: 100%;
    margin: 0;
    color: rgb(92, 88, 88);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    padding-top: 20px; /* Adjust based on header height */
    padding-bottom: 60px; /* Adjust based on footer height */
}
.options {
    margin-top:40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.card {
    padding: 20px;
    margin: 10px;
    flex: 1;
}
.btn-card {
    width: 250px;
    height: 300px;
    padding: 20px;
    margin: 10px;
    flex: 1;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opt-title {
    color: rgb(92, 88, 88);    
    margin-top: 20px; /* Adjust the value as needed */
}
.opt-image {
    min-width: 80px; /* Set the desired width */
    min-height: 80px; /* Set the same value as width to make it square */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.opt-image img {
    width: 100%;    
    object-fit: cover; /* Ensures the image covers the div while maintaining aspect ratio */
}

header {
    position: static;
    margin-top: 20px;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    padding: 10px 0;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    padding: 5px 0;
    color: rgb(180, 178, 178);
    font-style: italic;
}

.btn:hover {
    border-color: #007bff; /* Change border color on hover */
}
.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}
.previous-button-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Adjust width as needed */
}

.previous-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
form {
    width: 100%; /* Make the form control take up the full width of its container */
    max-width: 600px; /* Optionally set a maximum width */
    margin: 0 auto; /* Center the form horizontally */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.form-group {
    width: 100%; /* Make the form control take up the full width of its container */
    max-width: 600px; /* Optionally set a maximum width */
    margin: 0 auto; /* Center the form horizontally */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.form-control {
    width: 100%; /* Make the form control take up the full width of its container */
    max-width: 600px; /* Optionally set a maximum width */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}
.submit-button-container{
    display: flex;
    justify-content: center; /* Center the button horizontally */
    width: 100%; /* Make the container take up the full width of the form */
    margin-top:20px;
}

.submit-button{
    width: 100%; /* Make the button take up the full width of its container */
    max-width: 600px; /* Optionally set a maximum width */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding is included in the width */
    background-color: orange; /* Set the background color to blue */
    color: white; /* Set the text color to white for better contrast */
}
.skip-button{
    background-color: green; /* Set the background color to blue */
}

.full-width-table {
    width: 100%;
    margin: 0 auto;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.light-bg {
    background-color: #f8f9fa; /* Lighter background color */
}

.light {
    color: #a4a6a8; /* Lighter color */
}

.light-border {
    border: 1px solid lightgray;
}

@media (max-width: 768px) {
    .options {        
        flex-direction: column;
        max-width: none; /* Remove the maximum width */
        margin: 10px 0;        
    }
    .btn-card, .btn-card,.options {
        width: 100%; /* Make the button full width on smaller screens */
        max-width: none; /* Remove the maximum width */
    }
    .previous-button-container {
        display: none; /* Hide the previous button on small screens */
    }
    .form-control {
        width: 100%; /* Ensure it remains full width on smaller screens */
        max-width: none; /* Remove the maximum width on smaller screens */
    }
    .form-group {
        width: 100%; /* Ensure it remains full width on smaller screens */
        max-width: none; /* Remove the maximum width on smaller screens */
    }
    form {
        width: 100%; /* Ensure it remains full width on smaller screens */
        max-width: none; /* Remove the maximum width on smaller screens */
    }
    .submit-button{
        width: 100%; /* Ensure the button remains full width on smaller screens */
        max-width: none; /* Remove the maximum width on smaller screens */
    }
}

/* Context Menu */
.context-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.context-menu-item {
    padding: 8px 12px;
    cursor: pointer;
}

.context-menu-item:hover {
    background-color: #f0f0f0;
}
