/* Overlay */
.iafwmc-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    transition: visibility 0s, opacity 0.3s ease;
}

/* Modal Content */
.iafwmc-error-modal {
    background: #fff;
    width: 50%;
    height: 80vh;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
}

/* Close Button */
.iafwmc-error-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.iafwmc-error-close:hover {
    color: #ff5b5b;
}

/* Table Styles */
.iafwmc-error-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.iafwmc-error-table th,
.iafwmc-error-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.iafwmc-error-table th {
    background: #f4f4f4;
    font-weight: bold;
}

#sno,#status_icon
{
    width: 3.2em !important;
}
.iafwmc-log-tick {
    background-image: url('../img/tick.png'); /* Path relative to your CSS file */
    background-size: contain;
    /* background-repeat: no-repeat;
    background-position: center; */
    width: 15px; /* Set the desired width */
    height: 15px; /* Set the desired height */
    /* display: inline-block;  */
    margin: 0 auto; /* Center the image inside the div if needed */
    border: 1.5px solid green;
    border-radius: 9px;
}
.iafwmc-log-close {
    background-image: url('../img/close.png'); /* Path relative to your CSS file */
    background-size: contain;
    /* background-repeat: no-repeat;
    background-position: center; */
    width: 15px; /* Set the desired width */
    height: 15px; /* Set the desired height */
    /* display: inline-block;  */
    margin: 0 auto; /* Center the image inside the div if needed */
    border: 1.5px solid red;
    border-radius: 9px;
}
