/**
 * YOOAdmin - Enable focus page styles
 *
 * @package YOOAdmin
 */

/* Prevent FOUC */
body.yooadmin-enable-focus-body { opacity: 0; transition: opacity 0.1s; }
body.yooadmin-enable-focus-body.yoo-loaded { opacity: 1; }

/* Hide admin notices on enable-focus page */
.yooadmin-enable-focus-page ~ .notice,
.yooadmin-enable-focus-page ~ .updated,
.yooadmin-enable-focus-page ~ .error,
.yooadmin-enable-focus-page ~ .update-nag,
.wrap.yooadmin-enable-focus-page .notice,
.wrap.yooadmin-enable-focus-page .updated,
.wrap.yooadmin-enable-focus-page .error,
#wpbody-content > .notice,
#wpbody-content > .updated,
#wpbody-content > .update-nag,
#wpbody-content > .error,
.wrap > .notice,
.wrap > .updated { display: none !important; }

.yooadmin-enable-focus-page {
    max-width: 800px;
    margin: 50px auto;
}

.yoo-focus-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.yoo-focus-icon {
    margin-bottom: 20px;
    text-align: center;
}

.yoo-focus-icon img {
    max-height: 64px;
    width: auto;
}

.yoo-focus-card h1 {
    font-size: 28px;
    margin: 0 0 15px;
    color: var(--yp-text);
}

.yoo-focus-card p {
    font-size: 16px;
    color: var(--yp-text);
    margin: 0 0 30px;
    line-height: 1.6;
}

.yoo-focus-features {
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #f6f7f7;
    border-radius: 6px;
}

.yoo-focus-features h3 {
    margin: 0 0 15px;
    font-size: 18px;
    color: var(--yp-text);
}

.yoo-focus-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.yoo-focus-features li {
    padding: 8px 0;
    color: var(--yp-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.yoo-focus-features li::before {
    content: "✓";
    color: #edb54e;
    font-weight: bold;
    font-size: 18px;
}

.yoo-focus-card form {
    text-align: center;
    margin-top: 30px;
}

.yoo-focus-button {
    display: inline-block;
    padding: 12px 30px;
    background: #edb54e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid #edb54e;
    cursor: pointer;
}

.yoo-focus-button:hover {
    background: #e2a33d;
    border-color: #e2a33d;
    color: #fff;
}
