/* Notice Container Styles */
.rsi-notice-content {
    padding: 21px;
}

.rsi-notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rsi-notice-icon {
    font-size: 24px;
    margin-right: 12px;
}

.rsi-notice-header h3 {
    margin: 0;
    color: #1d2327;
    font-size: 16px;
}

/* Feature List */
.rsi-feature-list {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.rsi-feature-list li {
    padding: 5px 0 5px 24px;
    position: relative;
    margin-bottom: 8px;
}

.rsi-feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00a32a;
    font-weight: bold;
}

/* Notice Footer */
.rsi-notice-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f1;
}

.rsi-notice-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.rsi-notice-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rsi-notice-actions .button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Testimonial */
.rsi-notice-testimonial {
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    padding: 10px 15px;
    border-radius: 3px;
}

.rsi-testimonial-text {
    font-style: italic;
    margin: 0 0 5px 0;
    color: #50575e;
}

.rsi-testimonial-author {
    font-size: 12px;
    color: #8c8f94;
    font-weight: 500;
}

/* Review Stars */
.rsi-review-stars {
    margin: 10px 0 15px 0;
}

.rsi-review-stars .dashicons-star-filled {
    color: #ffb900;
    margin-right: 2px;
}

/* Settings Page Styles */
.rsi-settings-upgrade-alert {
    background: linear-gradient(135deg, #fff8e5 0%, #fff0cc 100%);
    border: 1px solid #ffb900;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rsi-upgrade-alert-icon {
    background: #ffb900;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rsi-upgrade-alert-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.rsi-upgrade-alert-content h4 {
    margin: 0 0 5px 0;
    color: #dba617;
}

.rsi-upgrade-alert-content p {
    margin: 0 0 10px 0;
    color: #50575e;
}

.rsi-upgrade-link {
    color: #dba617;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rsi-upgrade-link:hover {
    text-decoration: underline;
    color: #b38a12;
}

/* Pro Features Box */
.rsi-pro-features-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.rsi-pro-header {
    text-align: center;
    margin-bottom: 30px;
}

.rsi-pro-badge {
    background: white;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.rsi-pro-header h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 28px;
}

.rsi-pro-subtitle {
    opacity: 0.9;
    margin: 0;
    font-size: 16px;
}

.rsi-pro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.rsi-pro-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.rsi-pro-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.rsi-pro-feature .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: white;
}

.rsi-pro-feature h4 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.rsi-pro-feature p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.rsi-pro-cta {
    text-align: center;
    margin-top: 30px;
}

.rsi-pro-upgrade-button {
    background: white !important;
    color: #667eea !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.rsi-pro-upgrade-button:hover {
    background: #f8f9fa !important;
    color: #764ba2 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rsi-pro-guarantee {
    margin: 15px 0 0 0;
    opacity: 0.9;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rsi-pro-guarantee .dashicons {
    color: #ffb900;
}

/* Review Prompt */
.rsi-review-prompt-box {
    background: #f8f9fa;
    border: 1px solid #46b450;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.rsi-review-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.rsi-review-icon {
    font-size: 32px;
    color: #46b450;
    width: 32px;
    height: 32px;
}

.rsi-review-content h4 {
    margin: 0 0 5px 0;
    color: #1d2327;
}

.rsi-review-content p {
    margin: 0;
    color: #50575e;
}

.rsi-review-button {
    background: #46b450;
    color: white !important;
    border-color: #3a9e43;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.rsi-review-button:hover {
    background: #3a9e43;
    border-color: #318839;
}

/* Sidebar Styles */
.rsi-settings-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.rsi-settings-main {
    flex: 3;
}

.rsi-settings-sidebar {
    flex: 1;
    min-width: 300px;
}

.rsi-sidebar-box {
    background: #f8f9fa;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.rsi-sidebar-box h3 {
    margin-top: 0;
    color: #1d2327;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.rsi-sidebar-list {
    list-style: none;
    margin: 15px 0;