/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Contêiner principal */
.container {
    width: 250px;
    max-width: 250px;
    height: 600px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Logo */
.logo {
    margin-bottom: 10px;
    margin-top:40px;
}

.logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
}

/* Título */
.title {
    color: #000 !important;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Status */
.status {
    font-size: 14px;
    color: green;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.status svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Detalhes */
.details {
    text-align: left;
    font-size: 12px;
    line-height: 1.4;
    flex-grow: 1;
    overflow-y: auto;
}

.details strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
}

.details span {
    color: #555;
    display: block;
    margin-bottom: 10px;
}

/* Separador */
.separator {
    border-bottom: 1px solid #ddd;
    margin: 10px 0;
}

/* Rodapé */
.footer {
    font-size: 10px;
    color: #777;
}

.no-detection {
    text-decoration: none;
    color: inherit;
    cursor: text;
}

