body {
    font-family: Arial, sans-serif;
    margin: 0;
    box-sizing: border-box;
}

#app {
    display: flex;
    flex-wrap: wrap;
    /* For mobile responsiveness */
    gap: 20px;
    /* max-width: 1000px;
        margin: auto; */
}

.content {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 3em;
    justify-content: center;
}

label {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

@media only screen and (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo {
    width: 100%;
    text-align: center;
}

.title {
    width: 100%;
    background-color: rgb(242, 109, 62);
}

.title h3 {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: white;
    font-size: x-large;
}

.left {
    /* flex: 1 1 0%; */
}

.right {
    flex: 2 1 0%;
}

.left,
.right {
    /* min-width: 300px;  */
    box-sizing: border-box;
    padding: 20px;
}

.left h3,
.right h3 {
    margin-top: 0;
}

.left label {
    /* display: block; */
    font-size: 1rem;
    cursor: pointer;
}

.left img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 8px;
}

.right input,
select {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.formatted-date {
    display: flex;
}

.formatted-date select {
    margin-right: 5px;
    margin-bottom: 0px;
}

.right button {
    margin-top: 15px;
    padding: 10px;
    width: 30%;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-right: 10px;
}

.right button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

button.deny {
    background-color: #a8a2a1;
    /* Red */
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.result {
    padding: 25px;
    border: 1px solid #ccc;
}

.right>.passport-prompt,
.passport-form {
    padding: 25px;
    border: 1px solid #ccc;
}

.error {
    font-size: 13px;
    color: #d01919;
    padding-left: 10px;
}

.right button:hover {
    background-color: #45a049;
}

.resend-button {
    margin-left: 15px;
}

.resend-message {
    color: #777;
    font-size: 13px;
}

.info-box {
    background: #ffffff;
    border-radius: 5px;
}

.info-box h3,
h5 {
    margin-bottom: 10px;
    color: #212529;
}

.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.checkboxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 20px;
}

@media only screen and (max-width: 768px) {
    .checkboxes {
        gap: 20px;
    }
}

.checkboxes input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.radio-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Changed to space-between to push icon to the right */
    padding: 10px 40px 10px 25px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: center;
    font-size: 16px;
    color: #333;
    min-width: 120px;
    position: relative;
    /* Needed for absolute positioning of icon if you prefer */
}

/* Style for when the radio button is checked */

.checkboxes input[type="radio"]:checked+.radio-card {
    background-color: #4CAF50;
    /* Green background when checked */
    border-color: #4CAF50;
    /* Green border when checked */
    color: white;
    /* White text when checked */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    /* Subtle green shadow */
}

/* Hover effect for the radio cards */

.radio-card:hover {
    background-color: #e9e9e9;
    border-color: #bbb;
}

/* SVG Icon Styling */

.checkmark-icon {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 10px;
    display: none;
    flex-shrink: 0;
}

/* Show the checkmark icon when the radio button is checked */

.checkboxes input[type="radio"]:checked+.radio-card .checkmark-icon {
    display: block;
    /* Show the icon */
}

.checkmark-icon {
    position: absolute;
    top: 26%;
    right: 9px;
    width: 20px;
    height: 20px;
    fill: white;
    display: none;
}

.footer {
    background-color: rgb(242, 109, 62);
    width: 100%;
    padding: 50px 0;
}

.container {
    display: flex;
    justify-content: space-between;
}

.section {
    flex: 1;
    /* This makes all sections equal */
    padding: 20px;
    text-align: center;
}

.section h3 {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.section p {
    color: white;
    font-size: 11px;
    /* text-align: left; */
    font-weight: bold;
}

.section img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center
    }
}