body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
}

#data-container {
    width: 30%;
    margin: auto;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

th, td {
    padding: 12px;
    border: 1px solid #3f3f3f;
    text-align: left;
}

th {
    background-color: #282828;
    color: #fff;
    font-weight: bold;
}

td {
    background-color: #1f1f1f;
}

.name, .time, .message {
    animation: fadeIn 1s ease-in-out;
}

.name {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
}

.time {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.loading {
    font-size: 20px;
    color: #e0e0e0;
    text-align: center;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}