body {
    background-color: #f4f6f8;
    /* color: #212529; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Прижимаем содержимое к верху */
    height: 100vh;
    margin: 0;
}

nav {
    /* max-width: 400px; */
}

.nav-item a i {
    padding-right: 4px;
}

.container {
    flex-grow: 1;
    max-width: 400px;
}

.content {
    max-width: 350px;
    padding-top: 100px;
    text-align: center;
}

.alert-icon {
    font-size: 6rem;
    color: #dc3545;
    height: auto;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.alert-icon {
    width: 150px;
    /* Розмір вашого логотипу */
    height: auto;
    margin-bottom: 20px;
}



/* Карточки */
.status-icon i {
    font-size: 4rem;
    /* Размер иконки */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    /* Фиксированная ширина для выравнивания */
}

.device-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eaeaea;
}

.card:hover {
    transform: scale(1.01);
    /* Легкий эффект при наведении */
    /* transition: transform 0.2s ease-in-out; */
}



#current-time {
    /* font-size: 1.5rem; */
    font-family: 'Orbitron', sans-serif;
    /* color: #333; */
    letter-spacing: 0.05em;
}

.btn-link i {
    color: #6c757d;
    /* Серый минималистичный цвет */
}

.btn-link:hover i {
    color: #343a40;
    /* Чуть темнее при наведении */
}

.card-online {
    border: 2px solid #28a745;
    /* Зелёный */
    border-radius: 8px;
}

.card-offline {
    border: 2px solid #dc3545;
    /* Красный */
    border-radius: 8px;
}

.card-unknown {
    border: 2px solid #6c757d;
    /* Серый */
    border-radius: 8px;
}


/* Стили кнопки GOOGLE*/
.btn-google {
    width: 320px;
    background-color: #ffffff;
    color: #757575;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease-in-out;
}

.btn-google img {
    transition: transform 0.3s ease-in-out;
}

.btn-google:hover {
    background-color: #f8f9fa;
    color: #4285F4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-google:hover img {
    transform: scale(1.1);
}

.btn-google:active {
    transform: scale(0.95);
    box-shadow: none;
}


.navbar-brand {
    width: 100px; /* Фиксированная ширина */
}

#quick-state i{
    font-size: 1.2rem;;
}

/* .swal-wide{
    width:380px !important;
} */