/* Reset some default ugly browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body styling */
body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    color: #333;
}

/* Title */
h1 {
    color: white;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Table container vibe */
table {
    width: 60%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Header row */
th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
}

/* Table cells */
td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

/* Zebra striping (because we’re classy now) */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
tr:hover {
    background-color: #f1f1f1;
    transition: 0.2s;
}

/* Optional: make it responsive-ish */
@media (max-width: 768px) {
    table {
        width: 90%;
    }
}