#fcp-popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #0073aa;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.fcp-hidden {
    display: none;
}
.fcp-popup-content {
    max-width: 400px;
    text-align: center;
}
#fcp-form input {
    width: 90%;
    margin: 10px 0;
    padding: 10px;
}
#fcp-form button {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
