/**
 * DateDropper Custom Styles
 * Fixes positioning and alignment issues
 */

/* DateDropper container positioning */
.dd-w {
    position: fixed !important;
    z-index: 9999 !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* DateDropper backdrop */
.dd-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 9998 !important;
}

/* Ensure proper stacking context */
.dd-container {
    z-index: 10000 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .dd-w {
        width: 90% !important;
        max-width: 400px !important;
    }
}
