.cmlf-alerts-wrapper {
    position: relative;
    display: inline-block;
    margin: 15px 0;
}

.cmlf-alerts-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background: #EA7A3B;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

@media only screen and (max-width: 1250px) {
    .cmlf-alerts-wrapper {
        margin: 0;
    }

    .cmlf-alerts-button {
        font-size: 14px;
        line-height: 20px;
        background: #EA7A3B;
        color: #fff;
        border: none;
        padding: 8px 16px;
    }
}

.cmlf-alerts-popover {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #EA7A3B;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    width: 440px;
    z-index: 1000;
    border-radius: 8px;
}

@media only screen and (max-width: 1024px) {
    .cmlf-alerts-popover {
        position: fixed;
        left: 0;
        right: auto;
        top: 60px;
        width: 100%;
    }

    .cmlf-alerts-button {
        background: transparent;
        color: #EA7A3B;
        border: none;
        padding: 6px;
    }
}

.cmlf-alerts-popover .alert-item {
    padding: 10px 15px;
    background-color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #EA7A3B;
}

.cmlf-alerts-popover .alert-item-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-right: 6px;
    color: #000;
    text-decoration: none;
}

.cmlf-alerts-popover .alert-item-content a:hover {
    text-decoration: underline;
}

.alert-item-icon {
    margin-left: auto;
    font-size: 16px;
    line-height: 1;
}

.cmlf-alert-icon svg {
    display: block;
}

.cmlf-alerts-popover .alert-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cmlf-alerts-popover-heading {
    background-color: transparent;
}

.cmlf-alerts-popover-title {
    padding: 0 15px 10px;
    color: #fff;
    font-weight: 600;
}
