/* Review notice styles */
.dqcb-review-notice {
    padding: 20px !important;
    border-left-color: #2271b1 !important;
    margin: 20px 20px 20px 0;
}

.dqcb-review-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dqcb-review-notice img {
    margin-top: 5px;
    width: 50px;
    height: 50px;
}

.dqcb-review-notice-text {
    flex: 1;
}

.dqcb-review-notice-text h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #1d2327;
    font-weight: 600;
}

.dqcb-review-notice-text p {
    margin: 0 0 15px;
    font-size: 14px;
    color: #1d2327;
    line-height: 1.5;
}

.dqcb-review-notice-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dqcb-review-notice .button-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    padding: 4px 15px;
    font-size: 13px;
    line-height: 2;
    height: auto;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.dqcb-review-notice .button-primary:hover {
    background: #135e96;
    border-color: #135e96;
    transform: translateY(-1px);
}

.dqcb-review-notice .button-link {
    color: #646970 !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
    transition: color 0.2s ease;
}

.dqcb-review-notice .button-link:hover {
    color: #2271b1 !important;
}

.dqcb-review-notice .notice-dismiss {
    padding: 10px;
    color: #646970;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.dqcb-review-notice .notice-dismiss:before {
    font: normal 16px/20px dashicons;
    content: "\f153";
    position: relative;
    top: 3px;
    color: #646970;
}

.dqcb-review-notice .notice-dismiss:hover:before {
    color: #d63638;
}

/* Animation for review notice */
@keyframes slideInReview {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dqcb-review-notice {
    animation: slideInReview 0.3s ease-out;
}

.dqcb-review-notice.is-dismissing {
    animation: slideOutReview 0.3s ease-in forwards;
}

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