@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(300deg, #000000 0%, #aeb6cb 100%)
}

header{
    height: 60px;
    background: linear-gradient(300deg, #854a73 0%, #3d62c1 100%);

}

header, table {
            
    max-width: 1195px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
    margin: 20px auto;
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(61, 98, 193, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;

}

h1{
    color: #f1f1f1;
    font-size: 30px;
    font-weight: bold; 
    line-height: 60px;
    margin: 0;
}


table {
            
    max-width: 1200px;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

.zoom {
    transition: transform 0.3s ease;
}

.zoom:hover {
    background-color: rgb(76, 95, 94);
    color: #93d115;
}
#status {
    padding: 30px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.8),
        0 10px 20px rgba(0, 0, 0, 0.2);

    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

#status.hide {
    animation: slideOutRight 0.3s ease-in forwards;
}