table#flexible_cookies_cookie_table {
    border-collapse: collapse;
    width: 100%;
}

table#flexible_cookies_cookie_table tr:nth-child(even) {
    background: #ffffff;
}
table#flexible_cookies_cookie_table tr:nth-child(odd) {
    background: #f0f0f1;
}

table#flexible_cookies_cookie_table tr {
    transition: 0.3s;
    text-align: center;
}

table#flexible_cookies_cookie_table tbody tr:hover {
    transform: scale(1.01, 1.01);
    background: #ddd;
}

table#flexible_cookies_cookie_table tr td, table#flexible_cookies_cookie_table tr th {
    padding: 10px 5px;
}

iframe#flexible_cookies_scanner_iframe {
    border: 1px solid #ccc;
    margin: 25px 0px;
    width: 100%;
    height: 400px;
}
div.scanned_cookies{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}
span.scanner_spinner{
    font-weight: bold;
    animation: glow 1s infinite;
}

@keyframes glow {
    0% {opacity: 1;}
    50% {opacity: 0.2;}
    100%{opacity: 1;}
}