.badge {
    font-size: 15px;
}

.m-2 {
    margin: 1px;
}

.login-logo {
    font-size: 16px;
}

.flag {
    object-fit: cover;
    border-radius: 5px;
    height: 22px;
    width: 32px;
    border: 1px solid black;
}

#whitelist_list, #blacklist_list, #custom_price_list {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px;
    margin-bottom: 15px;
}

#whitelist_list li, #blacklist_list li, #custom_price_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    overflow-x:hidden;
}

.remove-item {
    cursor: pointer;
    color: #777777;
    background-color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 4px 8px;
    transition: background-color 0.3s ease-in-out;
}

.log-container {
    height: 60vh;
    overflow-y: auto;
}

.log-alert {
    border-bottom: 2px solid #e6e6e6;
    border-radius: 0px;
}

.log-status {
    margin-right: 10px;
}

.log-date {
    float: none;
    text-align: right;
}

.success {
    color: #59db84;
}

.info {
    color: #1294fc;
}

.warning {
    color: #f7c600;
}

.danger {
    color: rgb(255, 102, 68);
}


.product-container {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 2px solid #e6e6e6;
    border-radius: 0px;
}

.product-info {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product-description,
.product-pricing {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: bold;
}

.product-description b {
    color: #707070;
}

.product-pricing b {
    color: #707070;
}

.product-warning {
    border: 2px solid #f7c600;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.product-price {
    border: 1px solid #1294fc;
    border-radius: 5px;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
}

.product-price strike {
    font-size: 15px;
    color: #757575;
}

@media screen and (max-width: 600px) {
    .product-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-info {
        width: 100%;
    }

    .product-name {
        display: none;
    }
}