You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
693 B

body {
background: linear-gradient(135deg, #66d0ea, #764ba2); /* Gradient Background */
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.container {
background: rgba(255, 255, 255, 0.15); /* Transparent background */
backdrop-filter: blur(10px); /* Glass effect */
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
h1 {
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
table {
background: rgba(255, 255, 255, 0.9);
border-radius: 8px;
overflow: hidden;
}
.run-btn {
transition: all 0.3s ease-in-out;
}
.run-btn:hover {
transform: scale(1.1);
}