.bookings-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.75);display:flex;align-items:center;justify-content:center;z-index:10000;padding:20px}.bookings-modal-container{background:white;border-radius:12px;width:100%;max-width:900px;height:90vh;max-height:800px;display:flex;flex-direction:column;box-shadow:0 25px 50px -12px rgba(0,0,0,.25);animation:modalSlideIn .3s ease-out}@keyframes modalSlideIn{0%{opacity:0;transform:scale(.95) translateY(-20px)}to{opacity:1;transform:scale(1) translateY(0)}}.bookings-modal-header{display:flex;justify-content:space-between;align-items:center;padding:20px 24px;border-bottom:1px solid #e5e7eb;flex-shrink:0}.bookings-modal-header h2{margin:0;font-size:1.5rem;font-weight:600;color:#111827}.bookings-modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:#6b7280;padding:4px;border-radius:6px;transition:all .2s ease;display:flex;align-items:center;justify-content:center;width:32px;height:32px}.bookings-modal-close:hover{background-color:#f3f4f6;color:#374151}.bookings-modal-content{flex:1;position:relative;overflow:hidden}.bookings-modal-loading{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:white;color:#6b7280}.loading-spinner{width:40px;height:40px;border:3px solid #f3f4f6;border-top-color:#3b82f6;border-radius:50%;animation:spin 1s linear infinite;margin-bottom:16px}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.bookings-modal-loading p{margin:0;font-size:.95rem}@media (max-width:768px){.bookings-modal-overlay{padding:10px}.bookings-modal-container{height:95vh;max-height:none;border-radius:8px}.bookings-modal-header{padding:16px 20px}.bookings-modal-header h2{font-size:1.25rem}}@media (max-width:480px){.bookings-modal-overlay{padding:0}.bookings-modal-container{height:100vh;max-width:none;border-radius:0}}