body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    margin: 0;
    color: #000000;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    color: #000000;
}

h1 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #000000;
}

.input-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#nameInput {
    padding: 10px;
    width: 70%;
    border: 1px solid #fbc02d;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

#nameInput:focus {
    border-color: #fbc02d;
}

button {
    padding: 10px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fbc02d;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #f9a825;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

thead {
    background-color: #fbc02d;
    color: #000000;
}

th, td {
    padding: 10px;
    border: 1px solid #fbc02d;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background-color: #f5f5f5;
}

.generate-btn {
    background-color: #fbc02d;
    color: #000000;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.generate-btn:hover {
    background-color: #f9a825;
    transform: scale(1.05);
}

.spinner {
    display: none;
    margin: 20px auto;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(251, 192, 45, 0.1);
    border-left-color: #fbc02d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.result {
    font-size: 1.5em;
    margin-top: 20px;
    font-weight: 600;
    color: #fbc02d;
}
