body {
    background-color: #ffffff;
}
.header {
    background-color: #0A1541;
    color: #F0FAFF;
    padding: 15px;
}
.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
.timer-card {
    text-align: center;
}
.answered {
    background-color: #007bff !important; /* Синий цвет */
    color: white !important; /* Цвет текста */
}
.camera-card {
    width: 440px;
    height: 250px;
    margin-left: 20px; /* Отступ слева */
}
.without-radius{
    border-radius: 0;
}
.thick-borders{
    border-color: black;
}
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F69300;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hidden {
    display: none;
}

.close {
    cursor: pointer;
    font-size: 20px; /* Размер иконки крестика */
    position: absolute; /* Позиционируем относительно родителя */
    top: 5px; /* Отступ сверху */
    right: 10px; /* Отступ справа */
}

.video-radius {
    border-radius: 50%; /* Круглая форма видео */
    width: 300px; /* Ширина видео */
    height: 300px; /* Высота видео */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.with-borders{
    border: 1px solid rgba(0, 0, 0, .125);
}

.comment-field{
    background: #f1eff1;
}

.comment-field:focus{
    background: #f1eff1;
}

.header_nav_link{
    align-content: center;
    height: 50px;
    border-radius: 5px;
    padding: 8px;
    transition: 0.5s;
}

.header_nav_link_active{
    align-content: center;
    height: 50px;
    border-radius: 5px;
    padding: 8px;
    transition: 0.5s;
    background: #232d51;
}


.header_nav_link:hover{
    background: #232d51;
}
.header_nav_link:hover i{
    color:#5572cf;
}
.table_header_th{
    font-weight: 400;
    color: gray;
}