/* Modal de erro do Nocell Comment Moderator */
.nocell-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.nocell-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.5);
    backdrop-filter: blur(3px);
}

.nocell-modal-content {
    position: relative;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 10px 30px rgba(0,0,0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    animation: nocell-modal-slide-in 0.3s ease-out;
}

@keyframes nocell-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nocell-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 27px 17px;
    border-bottom: 1px solid #e5e9e1;
    background: #f9faf8;
}

.nocell-modal-header h3 {
    margin: 0;
    color: #2f2fd3;
    font-size: 19px;
    font-weight: 600;
}

.nocell-modal-close {
    background: none;
    border: none;
    font-size: 25px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.nocell-modal-close:hover {
    background-color: #e5e9e1;
    color: #333;
}

.nocell-modal-body {
    padding: 20px 27px;
    color: #333;
    line-height: 1.5;
}

.nocell-modal-body ul {
    margin: 0;
    padding-left: 20px;
}

.nocell-modal-body li {
    margin-bottom: 9px;
}

.nocell-modal-body p {
    margin: 0;
}

.nocell-modal-footer {
    padding: 17px 27px 20px;
    text-align: right;
    border-top: 1px solid #e5e9e1;
    background: #f9faf8;
}

.nocell-modal-ok {
    background: #2f2fd3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nocell-modal-ok:hover {
    background: #1c1cb7;
}

/* Responsividade */
@media (max-width: 600px) {
    .nocell-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .nocell-modal-header,
    .nocell-modal-body,
    .nocell-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .nocell-modal-header h3 {
        font-size: 17px;
    }
}

/* Acessibilidade */
.nocell-modal:focus {
    outline: none;
}

.nocell-modal-ok:focus,
.nocell-modal-close:focus {
    outline: 3px solid #7cba00;
    outline-offset: 3px;
} /* rndz */