#fboib-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.68);
z-index: 999998;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
#fboib-banner {
width: 100%;
background: #ffffff;
border-radius: 20px;
padding: 28px 20px 28px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
text-align: center;
animation: fboib-slideUp 0.35s ease;
}
@keyframes fboib-slideUp {
from { transform: translateY(100%); opacity: 0; }
to   { transform: translateY(0);    opacity: 1; }
}
.fboib-icon {
font-size: 28px;
margin-bottom: 6px;
}
.fboib-label {
margin: 0 0 6px;
font-size: 13px;
color: #888;
}
.fboib-job-title {
margin: 0 0 18px;
font-size: 16px;
font-weight: 700;
color: #1a1a1a;
line-height: 1.5;
}
.fboib-btn-open {
display: block;
width: 100%;
padding: 14px;
background: #c0392b;
color: #fff;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
margin-bottom: 10px;
}
.fboib-btn-open:active {
background: #a93226;
}