.rng-notification { 
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 1px auto;
    max-width: 400px;
    width: auto !important; /* Ensure width doesn't stretch beyond max-width */
    box-sizing: border-box; /* Include padding in width */
    border: none;  /* Ensure no border */
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: none; /* Remove box shadow */
    font-family: Arial, sans-serif;
}

.rng-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.rng-popular {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #007bff;
}

.rng-popular img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.rng-time {
    font-size: 12px;
    color: #999;
}

.rng-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rng-text {
    max-width: 80%;
}

.rng-text p {
    font-size: 14px;
    margin: 0 0 5px;
}

.rng-verified {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

.rng-verified img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

.rng-map {
    width: 30%;
    text-align: center;
    border-radius: 16px;
}

.rng-map img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 600px) {
    .rng-notification {
        padding: 10px;
        border: none;  /* Ensure no border on mobile as well */
    }

    .rng-text p {
        font-size: 14px;
    }

    /* Make map 50% width on mobile devices */
    .rng-map {
        width: 20%;
    }

    .rng-text {
        max-width: 67%;
    }
}

/* Additional adjustment to the parent container if needed */
.elementor-section {
    max-width: auto !important; /* Ensure Elementor section doesn't force 100% width */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-column {
    max-width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}