body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 98vh; /* Adjusted to take full viewport height */
    background-color: #f0f0f0; /* Added a light background color */
}

header, footer, main {
    width: 96%; /* Adjusted the width for better responsiveness */
    text-align: center;
}

.header-description {
    font-size: 24px; /* Increased font size for better visibility */
}

header, footer {
    background-image: url('https://i.ibb.co/CP4KjfX/fc-mobile-Robi.png');
    background-size: cover;
    color: white;
    padding: 10px; /* Increased padding for better spacing */
    border-radius: 20px; /* Increased border radius */
    margin-bottom: 20px; /* Increased margin for better separation */
}

footer {
    margin-top: auto;
}

.main-content {
    padding: 30px; /* Increased padding for better spacing */
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #fff; /* Added a white background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Added a subtle box shadow */
}

.playerInput {
    display: flex;
    flex-wrap: wrap; /* Added to handle smaller screen sizes */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.input-field {
    flex: 0 0 48%;
}

.input-field label {
    margin-right: 10px;
}

button {
    display: block;
    margin: 20px auto; /* Increased margin for better spacing */
    background-color: #001F3F;
    color: white;
    border: none;
    padding: 15px 30px; /* Increased padding for better button size */
    cursor: pointer;
    border-radius: 20px;
}

button:hover {
    background-color: #6a1b9a;
}
