.force-refresh-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.force-refresh-popup {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 50%;
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    text-align: center;
    padding: 20px;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.force-refresh-popup .close-btn {
    margin-top: 10px;
    background: #e8eaeb;
    color: #000;
    border: none;
    padding: 5px 10px;
    margin: 0 5px 0 5px;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.force-refresh-popup .close-btn:hover {
    background: #d1d3d4;
    color: #333;
}

.force-refresh-popup .sinceLastRefresh {
    color: #c3222e
}

/* Styling for the top-right X dismiss button */
.force-refresh-popup .dismiss-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 48px;
    border: none;
    background: none;
    color: #000;
    cursor: pointer;
    transition: color 0.3s;
    padding: unset;
    margin:unset;
}

.force-refresh-popup .dismiss-btn:hover {
    color: #d1d3d4;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .force-refresh-popup {
        width: 90%; /* Adjust the width as needed */
        padding-left: 0;
        padding-right: 0;
    }
}
