/* Сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили */
body {
    font-family: "Roboto", "Segoe UI", Arial, sans-serif;
    background-color: #0b1d3c; /* тёмно-синий фон */
    color: #e0e6ed;            /* светлый текст */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Шапка */
header {
    background-color: #112240;
    /* background-color: rgb(24, 16, 255); */
    margin-bottom: 15px;
    border-bottom: 1px solid #1f3a60;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

header .logo img {
    max-height: 70px;
}

/* Основная часть */
.wrapper {
    flex: 1;
    row-gap: 30px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.message-box {
    background: #112240;
    padding: 25px 40px;
    border: 1px solid #1f3a60;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    max-width: 700px;
    width: 100%;
    text-align: center;

    /* анимация появления */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease forwards;
}

.message-box h1, 
.message-box p {
    display: inline; /* выводим в одну строку */
    margin: 0 8px;
    font-weight: 500;
}

.message-box h1 {
    font-size: 1.6rem;
    color: white;
}

.message-box p {
    font-size: 1.2rem;
    color: white;
}

/* Футер */
footer {
    margin-top: 15px;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    color: white;
    border-top: 1px solid #1f3a60;
    background-color: #112240;
}

/* Заголовок таблицы */
.table-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #e0e6ed;
    text-align: center;
    font-weight: 600;
}

/* Таблица */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #0b1d3c;
    border: 1px solid #1f3a60;
    border-radius: 6px;
    overflow: hidden;
}

/* Ячейки */
.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #1f3a60;
    color: #e0e6ed;
    font-size: 1rem;
    text-align: left;
}

/* Левая колонка (ключ) */
.info-table td:first-child {
    font-weight: 600;
    width: 35%;
    background-color: #112240;
}

/* Последняя строка без нижней границы */
.info-table tr:last-child td {
    border-bottom: none;
}

/* Эффект при наведении */
.info-table tr:hover td {
    background-color: #1b2e52;
}




/* Анимация */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
