/* Rankology Setup Notice styles (prefixed file) */
.rankology-setup-notice {
    background: linear-gradient(135deg, #863BDF 50%, #A96AEB 100%) !important;
    text-align: left !important;
    border: none !important;
    border-left: 4px solid #C00707 !important;
    padding: 16px 20px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    margin: 15px 20px 15px 2px !important;
    color: #fff !important;
}

.rankology-setup-notice .rankology-setup-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rankology-setup-notice .rankology-setup-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rankology-setup-notice h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.rankology-setup-notice p {
    margin: 0 0 12px 0;
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.5;
}

.rankology-setup-notice .rankology-steps {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.rankology-setup-notice .rankology-steps ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rankology-setup-notice .rankology-steps li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rankology-setup-notice .rankology-step-num {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.rankology-setup-notice .rankology-action-btn {
    background: #fff;
    color: #A96AEB;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.rankology-setup-notice .rankology-action-btn:hover {
    background: #f8f9fa;
    color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.rankology-setup-notice.is-dismissible {
    position: relative;
    padding-right: 40px;
}

.rankology-setup-notice .notice-dismiss {
    top: 10%;
    transform: translateY(-50%);
}

.rankology-setup-notice .notice-dismiss:before {
    color: #fff;
}

.rankology-setup-notice .notice-dismiss:hover:before {
    color: #fff;
}

@media (max-width:782px) {
    .rankology-setup-notice .rankology-setup-inner {
        flex-direction: column;
        gap: 10px;
    }

    .rankology-setup-notice {
        margin: 10px 10px 10px 0;
    }
}