
.table {
    margin: 1rem 0;
    max-width: 600px;
}
.table .table-row {
    display: flex;
}

.table .table-row:first-child {
    .table-cell {
        &:first-child {
            border-top-left-radius: 8px;
        }
        &:last-child {
            border-top-right-radius: 8px;
        }
    }
}
.table .table-row:last-child {
    .table-cell {
        &:first-child {
            border-bottom-left-radius: 8px;
        }
        &:last-child {
            border-bottom-right-radius: 8px;
        }
    }
}
.table-cell {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-grow: 1;
    width: 100%;
    padding: 0.5em 1em;
    border: 1px solid #ddd;
    font-weight: 400;
    margin-top: -1px;
    margin-left: -1px;
    overflow: hidden;
    &.cell-header {
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        &.cell-data {
            text-align: center;
        }
    }
    &.cell-data {
        font-size: 16px;
        width: 150px !important;
        justify-content: space-around;
    }
}
    
/* Table columns
================================== */
.table-cell  {
    &.cell-header {
        @media only screen and (max-width : 768px) {
            text-align: center;
        }
    }
}
  
.allerta-liv--1 { background-color: #CACFD2;}
.allerta-liv-0 { background-color: #47AE45 /*27AE60*/; color: white; }
.allerta-liv-1 { background-color: #F3E600 /*F4D03F*/;}
.allerta-liv-2 { background-color: #F49819 /*E67E22*/; color: white; }
.allerta-liv-3 { background-color: #E52621 /*E74C3C*/; color: white; }

.wpaml-main {
    margin: 1rem 0;
    .wpaml-main-row {
        column-gap: 30px;
    }
}

.wpaml-legend {
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    width: 310px;
    max-width: 100%;
    padding: 20px;
    margin: 1rem 0;
    .legenda-item {
        display: flex;
        gap: 5px;
        align-items: center;
        margin-top: 3px;
    }
    .bull {
        width: 20px;
        height: 20px;
        display: inline-block;
        border-radius: 50%;
    }
}
.wpaml-info {
    margin-top: 20px;
    li {
        margin-left: 25px;
    }
}
.wpaml-links {
    margin-top: 10px;
}

#allerte-section.is-dark {
    background-color: #2a3036 !important;
    color: white !important;
    .table {
        color: white;
        .table-cell {
            border: 1px solid #555;
        }
    }
    .wpaml-legend {
        border: 1px solid #555;
    }
    .text-secondary {
        color: #bbb !important;
    }
    .icon-secondary {
        fill: #bbb !important;
    }
    ul {
        list-style: disc;
    }
}