@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4070f4;
}
.container{
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.container header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.content-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 1500px;
}

.top-right-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  
  .table-container {
    margin-top: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  th {
    background-color: #f2f2f2;
    text-align: left;
  }

  
.button-wrapper {
    margin-top: 20px;
}
/* 
input[type="file"] {
    display: none;
} */

button {
    /* padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-left: 10px; */
    display: block;
            width: 40%;
            max-width: 200px;
            padding: 10px;
            margin: 10px auto;
            background-color: rgb(62, 183, 163);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
input {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    font-size: 14px;
  }
  
  .logo {
    width: 80%;
    max-width: 300px;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .button, .logo {
        width: 80%; /* Adjust width for smaller screens */
        max-width: none; /* Remove maximum width */
    }
}
.bold {
    font-weight: bold;
    color: white;
}
th {
  background-color: transparent;
}

