body {
    background: url('background.claim.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#app {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 90%; /* Set width to 80% */
    margin: 0 auto; /* Center the container horizontally */
}

#app img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

label, textarea {
    display: block;
    margin-bottom: 10px;
}

textarea {
    width: 60%; /* Set width to 60% */
    padding: 10px;
    box-sizing: border-box;
    resize: vertical;
    display: inline-block;
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    width: 30%; /* Set width to 30% */
    display: inline-block;
    margin-left: 10px; /* Add margin for separation */
}

#loading {
    display: none;
    margin-top: 20px;
}

#result {
    margin-top: 20px;
    overflow-y: auto;
    overflow-x: auto;
    max-height: 300px;
    width: 100%;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

/* Mobile-friendly styles */
@media (max-width: 600px) {
    #app {
        padding: 10px;
    }
    textarea, button {
        width: 100%; /* Set full width for mobile */
        margin-left: 0; /* Remove margin for mobile */
    }
}
