* {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #fafafa;
    color: #262626;
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #d6249f;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fd5949;
}

.description {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #fd5949;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

textarea {
    width: 100%;
    height: 140px;
    background: #fff;
    color: #262626;
    border: 1px solid #dbdbdb;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    resize: none;
}

/* Updated Buttons */
.btn {
    padding: 10px 16px;
    margin: 10px 5px;
    cursor: pointer;
    background: radial-gradient(
        circle farthest-corner at 0% 150%,
        rgba(255, 225, 125, 1) 0%,
        rgba(255, 205, 105, 1) 12%,
        rgba(250, 145, 55, 1) 25%,
        rgba(235, 65, 65, 1) 41%,
        transparent 95%
    ),
    linear-gradient(-15deg, rgba(35, 75, 215, 1) -10%, rgba(195, 60, 190, 1) 65%);
    background-size: 120% 120%;
    animation: GradientBackground 5s ease-out infinite;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    display: inline-block;
    text-align: center;
}

.btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.table-container {
    margin-top: 20px;
    border-radius: 8px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
    border: 1px solid #dbdbdb;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

th {
    background: #f7f7f7;
    font-weight: bold;
    padding: 12px;
    border-bottom: 2px solid #dbdbdb;
    text-align: left;
    color: #fd5949;
}

td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: linear-gradient(
        135deg,
        rgba(195, 60, 190, 0.2) 0%,
        rgba(255, 100, 100, 0.2) 50%,
        rgba(255, 200, 50, 0.2) 100%
    );
}

input[type="number"] {
    width: 100px;
    padding: 6px;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

a {
    color: #285AEB;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

@keyframes GradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
