.wc-popup-notices {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: auto;
}

.wc-popup-notice {
    background: #fff;
    border-left: 4px solid #00a32a;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
    margin: 8px;
    padding: 12px 48px 12px 16px;
    position: relative;
    animation: slideIn 0.3s ease-in-out;
    max-width: 450px;
    width: 90%;
    border-radius: 4px;
}

.wc-popup-notice.is-error {
    border-left-color: #d63638;
}

.wc-popup-notice.is-info {
    border-left-color: #72aee6;
}

.wc-popup-notice-content {
    margin: 0;
    padding: 0;
}

.wc-popup-notice-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #949494;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    line-height: 1;
}

.wc-popup-notice-close:hover {
    color: #1e1e1e;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.wc-popup-notice.is-hiding {
    animation: fadeOut 0.3s ease-in-out forwards;
} 