#slideout-form-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10001;
    overflow-y: auto;
}
#slideout-form-container .slideout-inner {
    padding: 20px;
}
#slideout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
}
.slideout-hidden {
    display: none !important;
}
#slideout-form-container:not(.slideout-hidden) {
    transform: translateX(0);
}
