/* Импортируем Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Общий стиль */
body {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #00ffcc;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Заголовок */
h1 {
    font-size: 3em;
    text-transform: uppercase;
    margin-top: 20px;
    background: linear-gradient(90deg, #00ffcc, #008fb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s infinite alternate;
}

/* Анимация свечения заголовка */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #00ffcc, 0 0 20px #008fb3;
    }
    to {
        text-shadow: 0 0 20px #00ffcc, 0 0 40px #008fb3;
    }
}

/* Стиль таблицы */
table {
    width: 90%;
    margin: 30px auto;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 255, 204, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

/* Заголовки таблицы */
th {
    background: linear-gradient(90deg, #004f7f, #008fb3);
    color: #fff;
    padding: 15px;
    font-size: 1.2em;
    border-bottom: 3px solid #00ffcc;
}

/* Ячейки таблицы */
td {
    padding: 12px;
    border-bottom: 1px solid #00ffcc;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

/* Чередующиеся строки */
tr:nth-child(even) {
    background: rgba(0, 255, 204, 0.1);
}

/* Анимация строки при наведении */
tr:hover {
    background: rgba(0, 255, 204, 0.3);
    transform: scale(1.02);
}

/* Анимация статуса */
.status {
    font-size: 1.5em;
    transition: transform 0.3s ease-in-out;
}

/* Эффект на статус */
.status:hover {
    transform: rotate(10deg);
}

/* Кнопка обновления */
#refreshBtn {
    background: linear-gradient(90deg, #00ffcc, #008fb3);
    border: none;
    padding: 12px 20px;
    font-size: 1.2em;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    transition: background 0.3s ease-in-out, transform 0.2s;
}

/* Анимация кнопки */
#refreshBtn:hover {
    background: linear-gradient(90deg, #00aaff, #005f7f);
    transform: scale(1.1);
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #00aaff;
    opacity: 0.8;
}
