body {
background: #e8e1ff;
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
color: #3a1f5d;
}
.blueTable {
border-collapse: collapse;
margin: 40px auto;
width: 420px;
background: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(136, 84, 180, 0.2);
}

.blueTable caption {
font-size: 24px;
font-weight: bold;
padding: 15px;
background: linear-gradient(135deg, #9b59b6, #8e44ad);
color: white;
letter-spacing: 1px;
}

.blueTable td {
border-bottom: 1px solid #e9d5ff;
padding: 12px;
text-align: center;
font-size: 18px;
}

.blueTable tr:nth-child(even) {
background: #f7efff;
}

.blueTable tr:last-child td {
border-bottom: none;
}

.blueTable tr:hover {
background: #eee0ff;
transition: 0.3s;
}