@charset "UTF-8";.btn{background:none;border:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;display:flex;align-items:center;justify-content:center;font-weight:500;border-radius:8px;transition:all .2s ease-in-out;cursor:pointer;gap:.5rem;white-space:nowrap;max-width:10rem}.btn:focus-visible{outline:2px solid #0d4b85;outline-offset:2px}.btn:disabled{opacity:.6;cursor:not-allowed}.btn--primary{background-color:#0d4b85;color:#fff;border:1px solid #0d4b85}.btn--primary:hover:not(:disabled){background-color:#0f5a9f;border-color:#0f5a9f}.btn--primary:active:not(:disabled){background-color:#0a3a6b;border-color:#0a3a6b}.btn--secondary{background-color:#e5e7eb;color:#111827;border:1px solid #d1d5db}.btn--secondary:hover:not(:disabled){background-color:#d1d5db;border-color:#9ca3af}.btn--outline{background-color:transparent;color:#0d4b85;border:2px solid #0d4b85}.btn--outline:hover:not(:disabled){background-color:#0d4b85;color:#fff}.btn--ghost{background-color:transparent;color:#374151;border:1px solid transparent}.btn--ghost:hover:not(:disabled){background-color:#f3f4f6;color:#111827}.btn--danger{background-color:#ef4444;color:#fff;border:1px solid #ef4444}.btn--danger:hover:not(:disabled){background-color:#dc2626;border-color:#dc2626}.btn--sm{padding:.5rem 1rem;font-size:.875rem;min-height:32px}.btn--md{padding:.5rem 1.5rem;font-size:1rem;min-height:40px}.btn--lg{padding:1.5rem 2rem;font-size:1.125rem;min-height:48px}.btn--full-width{width:100%}.icon{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}.icon--sm{width:16px;height:16px;font-size:16px}.icon--md{width:20px;height:20px;font-size:20px}.icon--lg{width:24px;height:24px;font-size:24px}.icon--xl{width:32px;height:32px;font-size:32px}.icon--clickable{cursor:pointer;transition:opacity .15s ease-in-out}.icon--clickable:hover{opacity:.8}.icon--clickable:active{opacity:.6}.icon-wrapper{position:relative;display:inline-flex}.icon-tooltip{position:absolute;bottom:125%;left:50%;transform:translate(-50%);background:#111827;color:#fff;font-size:.75rem;padding:4px 8px;border-radius:6px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .15s ease-in-out,transform .15s ease-in-out;transform-origin:bottom center;z-index:10}.icon-tooltip:after{content:"";position:absolute;top:100%;left:50%;transform:translate(-50%);border-width:4px;border-style:solid;border-color:#111827 transparent transparent transparent}.icon-wrapper:hover .icon-tooltip{opacity:1;transform:translate(-50%) translateY(-4px)}.custom-input{display:flex;flex-direction:column;gap:.25rem;width:100%}.custom-input--full{grid-column:1/-1}.custom-input .custom-input__label,.custom-input .custom-input__checkbox-text{font-size:.875rem;font-weight:500;color:#374151}.custom-input .custom-input__required{color:#ef4444;margin-left:.25rem}.custom-input .custom-input__field-wrapper{position:relative;display:flex;align-items:center;width:100%}.custom-input .custom-input__field{background:none;border:none;outline:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;width:100%;padding:.5rem;font-size:1rem;color:#111827;background-color:#fff;border:1px solid #d1d5db;border-radius:8px;transition:all .2s ease-in-out}.custom-input .custom-input__field::placeholder{color:#9ca3af}.custom-input .custom-input__field:hover:not(:disabled){border-color:#9ca3af}.custom-input .custom-input__field:focus{border-color:#0d4b85;outline:none;box-shadow:0 0 0 3px #0d4b851a}.custom-input .custom-input__field:disabled{background-color:#f3f4f6;color:#6b7280;cursor:not-allowed}.custom-input .custom-input__field--with-icon{padding-left:2rem}.custom-input .custom-input__icon{position:absolute;left:.5rem;color:#9ca3af;display:flex;align-items:center;pointer-events:none;z-index:1}.custom-input--has-error .custom-input__field{border-color:#ef4444}.custom-input--has-error .custom-input__field:focus{box-shadow:0 0 0 3px #ef44441a}.custom-input .custom-input__error-msg{font-size:.75rem;color:#ef4444;margin-top:2px}.custom-input--checkbox{flex-direction:row;align-items:center;gap:.5rem;padding:.25rem 0}.custom-input--checkbox .custom-input__checkbox-label{display:flex;align-items:center;cursor:pointer;gap:.5rem}.custom-input--checkbox .custom-input__checkbox{width:18px;height:18px;cursor:pointer;accent-color:#0d4b85}.modal{position:fixed;inset:0;z-index:1050;display:flex;align-items:center;justify-content:center;padding:1rem;animation:fadeIn .2s ease-in-out}@media(min-width:768px){.modal{padding:2rem}}.modal__overlay{position:fixed;inset:0;background-color:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:fadeIn .2s ease-in-out;z-index:-1}.modal__overlay--open{animation:fadeIn .2s ease-in-out}.modal__container{position:relative;background-color:#fff;border-radius:16px;box-shadow:0 25px 50px -12px #00000040;width:100%;max-width:100%;max-height:90vh;overflow:hidden;display:flex;flex-direction:column;z-index:1050;animation:slideUp .2s ease-in-out;transform-origin:center}@media(min-width:768px){.modal__container{max-height:85vh}}.modal__container--open{animation:slideUp .2s ease-in-out}.modal__container--sm{max-width:400px}.modal__container--md{max-width:600px}.modal__container--lg{max-width:800px}.modal__container--xl{max-width:1000px}.modal__container--full{max-width:95vw;max-height:95vh}@keyframes slideUp{0%{opacity:0;transform:translateY(20px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.modal__header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem 2rem;border-bottom:1px solid #e5e7eb;flex-shrink:0;gap:1rem}@media(min-width:768px){.modal__header{padding:2rem}}.modal__title{font-size:1.25rem;font-weight:600;color:#111827;margin:0;flex:1;min-width:0}@media(min-width:768px){.modal__title{font-size:1.5rem}}.modal__close-btn{background:none;border:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:8px;background-color:transparent;color:#4b5563;cursor:pointer;transition:all .15s ease-in-out;flex-shrink:0}.modal__close-btn:hover{background-color:#f3f4f6;color:#111827}.modal__close-btn:active{transform:scale(.95)}@media(min-width:768px){.modal__close-btn{width:36px;height:36px}}.modal__content{flex:1;overflow-y:auto;overflow-x:hidden;padding:1.5rem 2rem}.modal__content::-webkit-scrollbar{width:8px;height:8px}.modal__content::-webkit-scrollbar-track{background:#f3f4f6}.modal__content::-webkit-scrollbar-thumb{background:#9ca3af;border-radius:9999px}.modal__content::-webkit-scrollbar-thumb:hover{background:#6b7280}@media(min-width:768px){.modal__content{padding:2rem}}.modal__container:not(:has(.modal__header)) .modal__content{padding-top:2rem}@media(min-width:768px){.modal__container:not(:has(.modal__header)) .modal__content{padding-top:3rem}}@media(max-width:640px){.modal{padding:.5rem;align-items:flex-end}.modal__container{max-width:100%;max-height:90vh;border-radius:16px 16px 0 0;animation:slideUpMobile .2s ease-in-out}.modal__container--open{animation:slideUpMobile .2s ease-in-out}.modal__header,.modal__content{padding:1rem 1.5rem}}@keyframes slideUpMobile{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}.modal{z-index:1050}.modal__overlay{z-index:1040}.modal__container{z-index:1050}.select-wrapper{display:flex;flex-direction:column;gap:.25rem;width:100%}.select-wrapper--full{grid-column:1/-1}.select-label{font-size:.875rem;font-weight:500;color:#374151}.select-required{color:#ef4444;margin-left:.25rem}.select{width:100%;padding:.5rem 1rem;border:1px solid #d1d5db;border-radius:8px;font-size:1rem;color:#111827;background-color:#fff;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;cursor:pointer}.select:focus{outline:none;border-color:#0d4b85;box-shadow:0 0 0 3px #0d4b851a}.select:disabled{background-color:#f3f4f6;cursor:not-allowed;opacity:.6}.select--error{border-color:#ef4444}.select--error:focus{box-shadow:0 0 0 3px #ef44441a}.select-error{font-size:.75rem;color:#ef4444}.custom-table{width:100%}.custom-table__header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.custom-table__title{font-size:1.125rem;font-weight:600;color:#111827}.custom-table__wrapper{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;overflow:hidden}.custom-table__wrapper table{width:100%;border-collapse:separate;border-spacing:0 8px}.custom-table__wrapper thead{background:#f9fafb}.custom-table__wrapper th{padding:1rem;text-align:center;font-size:.75rem;font-weight:600;color:#4b5563;text-transform:uppercase;letter-spacing:.5px;border-bottom:1px solid #e5e7eb}.custom-table__wrapper tbody tr{background:#fff;border-radius:8px;box-shadow:0 1px 2px #0000000d;transition:all .15s ease-in-out}.custom-table__wrapper tbody tr:nth-child(2n){background:#f9fafb}.custom-table__wrapper tbody tr:hover{box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;transform:translateY(-1px)}.custom-table__wrapper td{padding:.5rem 1rem;text-align:center;font-size:.875rem;color:#374151;background:inherit;border:none}.custom-table__wrapper td:first-child{border-top-left-radius:8px;border-bottom-left-radius:8px}.custom-table__wrapper td:last-child{border-top-right-radius:8px;border-bottom-right-radius:8px}.custom-table__actions{display:flex;justify-content:flex-end;gap:.5rem}.custom-table__icon{cursor:pointer;color:#6b7280;display:inline-flex;align-items:center;transition:color .15s ease-in-out,transform .15s ease-in-out}.custom-table__icon:hover{color:#0d4b85;transform:scale(1.1)}.custom-table__icon.is-danger:hover{color:#ef4444}.custom-table__icon.is-success:hover{color:#10b981}@media(max-width:768px){.custom-table__wrapper.is-responsive thead{display:none}.custom-table__wrapper.is-responsive table{border-spacing:0}.custom-table__wrapper.is-responsive tbody tr{display:block;margin-bottom:1rem;background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;padding:.5rem}.custom-table__wrapper.is-responsive tbody tr:nth-child(2n){background:#fff}.custom-table__wrapper.is-responsive td{display:flex;justify-content:space-between;align-items:center;padding:.25rem 0}.custom-table__wrapper.is-responsive td:before{content:attr(data-label);font-size:.75rem;color:#6b7280;text-transform:uppercase;font-weight:500}}.custom-table__pagination{display:flex;justify-content:flex-end;align-items:center;gap:1rem;margin-top:1rem}.custom-table__pagination button{padding:.25rem .5rem;border:1px solid #d1d5db;background:#fff;border-radius:6px;cursor:pointer;transition:background .15s ease-in-out}.custom-table__pagination button:hover:not(:disabled){background:#f9fafb}.custom-table__pagination button:disabled{opacity:.4;cursor:not-allowed}.custom-table__loader{text-align:center;padding:1rem;font-size:.875rem;color:#6b7280}.sidebar__close-btn,.sidebar__collapse-btn{background:none;border:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;display:flex;align-items:center;justify-content:center;padding:.25rem;cursor:pointer;border-radius:6px;color:#d1d5db;transition:background-color .15s ease-in-out,color .15s ease-in-out}.sidebar__close-btn:hover,.sidebar__collapse-btn:hover{background-color:#ffffff1a;color:#fff}.sidebar__logo-tenant,.sidebar__logo-icon,.sidebar__logo-main{width:auto;object-fit:contain}.sidebar{display:flex;flex-direction:column}.sidebar::-webkit-scrollbar{width:8px;height:8px}.sidebar::-webkit-scrollbar-track{background:#f3f4f6}.sidebar::-webkit-scrollbar-thumb{background:#9ca3af;border-radius:9999px}.sidebar{position:fixed;inset:0 auto 0 0;z-index:1030;width:280px;height:100vh;background-color:#1f2937;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;overflow-x:hidden;overflow-y:auto;transform:translate(-100%);transition:transform .2s ease-in-out,width .2s ease-in-out}@media(min-width:768px){.sidebar{transform:translate(0)}}.sidebar--open{transform:translate(0)}.sidebar--collapsed{width:80px}.sidebar--collapsed .sidebar__header{padding:1rem;justify-content:center}.sidebar--collapsed .sidebar__logo-container,.sidebar--collapsed .sidebar__user-details,.sidebar--collapsed .sidebar__text{display:none}.sidebar--collapsed .sidebar__link{justify-content:center;padding:1rem}.sidebar--collapsed .sidebar__collapse-btn{margin:0 auto}.sidebar::-webkit-scrollbar{width:6px}.sidebar::-webkit-scrollbar-track{background:#111827}.sidebar::-webkit-scrollbar-thumb{background:#4b5563;border-radius:9999px}.sidebar::-webkit-scrollbar-thumb:hover{background:#6b7280}.sidebar__header{display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:10;min-height:80px;padding:1.5rem;gap:1rem;background-color:#111827;border-bottom:1px solid rgba(255,255,255,.1);transition:padding .2s ease-in-out}.sidebar__logo-container{display:flex;align-items:center;justify-content:flex-start;gap:1rem;flex:1}.sidebar__logo-main{height:50px;filter:brightness(0) invert(1)}.sidebar__logo-icon{height:40px;filter:brightness(0) invert(1)}.sidebar__logo-tenant{height:32px}.sidebar__logo-collapsed{display:flex;align-items:center;justify-content:center;width:100%}.sidebar__logo-divider{width:1px;height:24px;background-color:#fff3}.sidebar__header-actions{display:flex;align-items:center;justify-content:center;gap:.25rem}@media(max-width:767px){.sidebar__collapse-btn{display:none}}@media(min-width:768px){.sidebar__close-btn{display:none}}.sidebar__nav{flex:1;padding:1rem;overflow-y:auto}.sidebar__menu{display:flex;flex-direction:column;gap:.25rem;margin:0;padding:0;list-style:none}.sidebar__item{width:100%}.sidebar__link{display:flex;align-items:center;justify-content:flex-start;width:100%;gap:1rem;padding:1rem 1.5rem;border-radius:8px;text-decoration:none;white-space:nowrap;font-size:1rem;font-weight:500;color:#d1d5db;transition:background-color .15s ease-in-out,color .15s ease-in-out,transform .15s ease-in-out}.sidebar__link:hover{background-color:#ffffff0d;color:#fff;transform:translate(4px)}.sidebar__link--active{background-color:#0d4b85;color:#fff;font-weight:600;box-shadow:0 4px 12px #0d4b854d}.sidebar__link--active:hover{background-color:#1a6ba8;transform:none}.sidebar__link--active .sidebar__icon{color:#fff}.sidebar__icon{width:20px;height:20px;flex-shrink:0}.sidebar__footer{margin-top:auto;padding:1.5rem;background-color:#111827;border-top:1px solid rgba(255,255,255,.1)}.sidebar__user-info{display:flex;align-items:center;justify-content:flex-start;gap:1rem}.sidebar__user-avatar{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:9999px;background-color:#0d4b85;color:#fff}.sidebar__user-details{display:flex;flex-direction:column;gap:2px;min-width:0}.sidebar__user-name{font-size:.875rem;font-weight:600;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.sidebar__user-role{font-size:.75rem;color:#9ca3af;text-transform:capitalize}.sidebar__overlay{position:fixed;inset:0;z-index:1020;background-color:#00000080;animation:fadeIn .2s ease-in-out}@media(min-width:768px){.sidebar__overlay{display:none}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.navbar{position:sticky;top:0;z-index:1020;height:64px;background:linear-gradient(135deg,#1a6ba8,#0d4b85);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;transition:all .2s ease-in-out;border-radius:0}@media(min-width:768px){.navbar{border-bottom-left-radius:16px;border-bottom-right-radius:16px}}.navbar__content{display:flex;align-items:center;justify-content:space-between;height:100%;padding:0 1rem}@media(min-width:768px){.navbar__content{padding:0 1.5rem}}.navbar__left{display:flex;align-items:center;justify-content:flex-start;gap:1rem;flex:1;min-width:0}.navbar__right{display:flex;align-items:center;justify-content:center;gap:1rem;flex-shrink:0}.navbar__menu-btn{background:none;border:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;display:flex;align-items:center;justify-content:center;padding:.5rem;background-color:#ffffff26;color:#fff;border-radius:8px;cursor:pointer;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:all .15s ease-in-out}.navbar__menu-btn:hover{background-color:#ffffff40;transform:scale(1.05)}.navbar__menu-btn:active{transform:scale(.95)}@media(min-width:768px){.navbar__menu-btn{display:none}}.navbar__title{font-size:1.125rem;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-shadow:0 2px 4px rgba(0,0,0,.1)}.navbar__user-info{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:.25rem .5rem;background-color:#ffffff26;border-radius:12px;cursor:pointer;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:all .15s ease-in-out}.navbar__user-info:hover{background-color:#ffffff40;transform:translateY(-1px)}.navbar__user-avatar{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:9999px;background-color:#fff3;color:#fff;border:2px solid rgba(255,255,255,.3);flex-shrink:0}.navbar__user-details{display:none}@media(min-width:768px){.navbar__user-details{display:flex;flex-direction:column;gap:2px}}.navbar__user-name{font-size:.875rem;font-weight:600;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-transform:capitalize}.navbar__user-role{font-size:.75rem;color:#ffffffe6;text-transform:capitalize}.navbar__logout-btn{display:flex;align-items:center;justify-content:center;gap:.25rem;padding:.5rem;background-color:#ffffff26;border:2px solid rgba(255,255,255,.3);color:#fff;border-radius:8px;font-size:.875rem;font-weight:500;cursor:pointer;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:all .15s ease-in-out}.navbar__logout-btn:hover{background-color:#ffffff40;border-color:#ffffff80;box-shadow:0 4px 8px #00000026}@media(min-width:768px){.navbar__logout-btn{padding:.5rem 1rem}}.navbar__logout-text{display:none}@media(min-width:768px){.navbar__logout-text{display:inline}}.layout{display:flex;align-items:center;justify-content:flex-start;min-height:100vh;background-color:#f9fafb;position:relative}.layout__main{display:flex;flex-direction:column;flex:1;width:100%;min-width:0;margin-left:0;transition:margin-left .2s ease-in-out;padding-left:.3rem}@media(min-width:768px){.layout__main{margin-left:280px}}@media(min-width:768px){.layout__main--sidebar-collapsed{margin-left:80px}}.layout__content{flex:1;padding:0;width:100%;max-width:100%;overflow-x:auto;min-height:calc(100vh - 64px);padding:1rem}.login{min-height:100vh;display:grid;grid-template-columns:1fr 1fr;font-family:Roboto,system-ui,sans-serif}.login__brand,.login__form-wrapper{position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}.login__brand{background-color:#fff;padding:2rem}.login__brand img{max-width:800px;width:100%;height:auto;z-index:1}.login__form-wrapper{padding:2rem}.login__blobs{position:absolute;inset:0;pointer-events:none;z-index:0}.blob{position:absolute;border-radius:9999px;filter:blur(16px)}.blob--blue-lg{top:18%;left:12%;width:300px;height:300px;background:radial-gradient(closest-side,rgba(10,58,107,.32),transparent);animation:loginFloat1 16s ease-in-out infinite}.blob--red-lg{bottom:14%;right:14%;width:340px;height:340px;background:radial-gradient(closest-side,rgba(227,27,35,.28),transparent);animation:loginFloat2 20s ease-in-out infinite}.blob--blue-sm{top:10%;right:25%;width:180px;height:180px;background:radial-gradient(closest-side,rgba(13,75,133,.22),transparent);animation:loginFloat3 18s ease-in-out infinite}.login__form{width:100%;max-width:380px;display:grid;gap:.5rem;z-index:1}.login__form__field,.login__field{display:flex;flex-direction:column}.login__field label{font-size:.875rem;margin-bottom:.25rem;color:#374151}.login__field input{padding:.5rem 1rem;font-size:.875rem;border-radius:12px;border:1px solid #d1d5db;outline:none}.login__field input:focus{border-color:#0d4b85}.login__field span{margin-top:.25rem;font-size:.75rem;color:#dc2626}button{width:100%;padding:.5rem 1rem;border-radius:9999px;background:#0d4b85;color:#fff;font-size:1rem;font-weight:700;border:1px solid #0a3a6b;cursor:pointer;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;transition:.2s ease-in-out}button:hover{background:#0f5a9f}button:disabled{opacity:.7;cursor:not-allowed}.dashboard{padding:1.5rem;min-height:100vh;background:linear-gradient(135deg,#0d4b850d,#e31b230d)}@media(min-width:768px){.dashboard{padding:2rem}}.dashboard__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}@media(min-width:768px){.dashboard__header{flex-wrap:nowrap}}.dashboard__header-left{flex:1;min-width:0}.dashboard__greeting{font-size:1rem;font-weight:400;color:#4b5563;margin:0 0 .25rem}.dashboard__title{font-size:1.875rem;font-weight:700;color:#111827;margin:0}.dashboard__header-right{display:flex;align-items:center;justify-content:center;gap:1rem;flex-shrink:0}.dashboard__search{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.5rem 1rem;background-color:#fff;border:1px solid #e5e7eb;border-radius:12px;min-width:200px}@media(max-width:640px){.dashboard__search{display:none}}.dashboard__search-input{background:none;border:none;outline:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;flex:1;font-size:.875rem;color:#374151}.dashboard__search-input::placeholder{color:#9ca3af}.dashboard__notification-btn{background:none;border:none;padding:0;margin:0;font-family:inherit;font-size:inherit;color:inherit;display:flex;align-items:center;justify-content:center;position:relative;padding:.5rem;background-color:#fff;border:1px solid #e5e7eb;border-radius:8px;cursor:pointer;transition:all .15s ease-in-out}.dashboard__notification-btn:hover{background-color:#f9fafb;border-color:#0d4b85}.dashboard__notification-badge{position:absolute;top:-4px;right:-4px;background-color:#e31b23;color:#fff;font-size:.75rem;font-weight:700;padding:2px 6px;border-radius:9999px;min-width:18px;text-align:center}.dashboard__user-profile{display:flex;justify-content:flex-start;align-items:center;gap:.5rem;padding:.25rem .5rem;background-color:#fff;border:1px solid #e5e7eb;border-radius:12px;cursor:pointer;transition:all .15s ease-in-out}.dashboard__user-profile:hover{border-color:#0d4b85}@media(max-width:640px){.dashboard__user-profile .dashboard__user-info{display:none}}.dashboard__user-avatar{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:9999px;background-color:#0d4b85;color:#fff;flex-shrink:0}.dashboard__user-info{display:flex;flex-direction:column;gap:2px;min-width:0}.dashboard__user-name{font-size:.875rem;font-weight:600;color:#111827;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dashboard__user-role{font-size:.75rem;color:#6b7280;text-transform:capitalize}.dashboard__stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;margin-bottom:2rem}.dashboard__stat-card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;display:flex;align-items:center;justify-content:flex-start;gap:1rem;padding:1.5rem;transition:all .2s ease-in-out;cursor:pointer}.dashboard__stat-card:hover{transform:translateY(-2px);box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.dashboard__stat-card--primary .dashboard__stat-icon{background-color:#0d4b851a;color:#0d4b85}.dashboard__stat-card--info .dashboard__stat-icon{background-color:#3b82f61a;color:#3b82f6}.dashboard__stat-card--warning .dashboard__stat-icon{background-color:#f59e0b1a;color:#f59e0b}.dashboard__stat-card--success .dashboard__stat-icon{background-color:#10b9811a;color:#10b981}.dashboard__stat-icon{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:12px;flex-shrink:0}.dashboard__stat-content{display:flex;flex-direction:column;gap:.25rem;flex:1;min-width:0}.dashboard__stat-value{font-size:1.5rem;font-weight:700;color:#111827;line-height:1.25}.dashboard__stat-label{font-size:.875rem;color:#4b5563}.dashboard__stat-change{font-size:.75rem;color:#10b981;font-weight:500}.dashboard__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:1024px){.dashboard__grid{grid-template-columns:repeat(2,1fr)}}.dashboard__card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;padding:1.5rem;padding:2rem;transition:all .2s ease-in-out}.dashboard__card:hover{box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.dashboard__card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.dashboard__card-title{font-size:1.125rem;font-weight:600;color:#111827;margin:0}@media(min-width:1024px){.dashboard__card--next-turn{grid-column:1}}.dashboard__next-turn-content{display:flex;flex-direction:column;gap:1.5rem}.dashboard__turn-info{display:flex;justify-content:space-between;align-items:center}.dashboard__turn-module{font-size:.875rem;font-weight:500;color:#4b5563;padding:.25rem .5rem;background-color:#f3f4f6;border-radius:8px}.dashboard__turn-time{font-size:.875rem;color:#4b5563}.dashboard__turn-visual{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;background:linear-gradient(135deg,#0d4b85,#1a6ba8);border-radius:12px;color:#fff}.dashboard__turn-number{font-size:1.875rem;font-weight:700}.dashboard__turn-separator{font-size:1.125rem;font-weight:500;opacity:.8}.dashboard__turn-client{font-size:1rem;font-weight:500}@media(min-width:1024px){.dashboard__card--statistics{grid-column:2}}.dashboard__statistics-content{display:flex;flex-direction:column;gap:1rem}.dashboard__stat-row{display:flex;justify-content:space-between;align-items:center}.dashboard__stat-label-small{font-size:.875rem;color:#4b5563}.dashboard__stat-value-small{font-size:1.125rem;font-weight:600;color:#111827}.dashboard__progress-bar{display:flex;align-items:center;justify-content:flex-start;height:8px;background-color:#e5e7eb;border-radius:9999px;overflow:hidden;margin-top:.5rem}.dashboard__progress-segment{height:100%}.dashboard__progress-segment--success{background-color:#10b981}.dashboard__progress-segment--warning{background-color:#f59e0b}.dashboard__progress-segment--error{background-color:#ef4444}@media(min-width:1024px){.dashboard__card--table{grid-column:1/-1}}.dashboard__table{overflow-x:auto}.dashboard__table::-webkit-scrollbar{width:8px;height:8px}.dashboard__table::-webkit-scrollbar-track{background:#f3f4f6}.dashboard__table::-webkit-scrollbar-thumb{background:#9ca3af;border-radius:9999px}.dashboard__table::-webkit-scrollbar-thumb:hover{background:#6b7280}.dashboard__table table{width:100%;border-collapse:collapse}.dashboard__table thead{background-color:#f9fafb}.dashboard__table th{padding:1rem;text-align:left;font-size:.75rem;font-weight:600;color:#4b5563;text-transform:uppercase;letter-spacing:.5px;border-bottom:1px solid #e5e7eb}.dashboard__table td{padding:1rem;font-size:.875rem;color:#374151;border-bottom:1px solid #f3f4f6}.dashboard__table tbody tr{transition:background-color .15s ease-in-out}.dashboard__table tbody tr:hover{background-color:#f9fafb}.dashboard__turn-badge{display:inline-block;padding:.25rem .5rem;background-color:#0d4b851a;color:#0d4b85;border-radius:8px;font-weight:600;font-size:.75rem}.dashboard__status-badge{display:inline-block;padding:.25rem .5rem;border-radius:8px;font-size:.75rem;font-weight:500}.dashboard__status-badge--atention{background-color:#3b82f61a;color:#3b82f6}.dashboard__status-badge--pendiente{background-color:#f59e0b1a;color:#f59e0b}.dashboard__status-badge--completado{background-color:#10b9811a;color:#10b981}@media(min-width:1024px){.dashboard__card--reminder{grid-column:2}}.dashboard__card--reminder{background:linear-gradient(135deg,#0d4b85,#1a6ba8);color:#fff}.dashboard__reminder-content{display:flex;flex-direction:column;gap:1.5rem}.dashboard__reminder-text{font-size:1.25rem;font-weight:700;color:#fff;margin:0;line-height:1.625}.tenant-card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;padding:1.5rem;display:flex;flex-direction:column;gap:1rem;transition:all .2s ease-in-out}.tenant-card:hover{box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;transform:translateY(-2px)}.tenant-card__header{display:flex;align-items:center;justify-content:space-between;align-items:flex-start;gap:1rem}.tenant-card__info{flex:1;min-width:0}.tenant-card__name{font-size:1.125rem;font-weight:600;margin-bottom:.25rem;color:#111827;word-break:break-word}.tenant-card__tax-id{font-size:.875rem;color:#4b5563;margin:0}.tenant-card__status{padding:.25rem .5rem;border-radius:9999px;font-size:.75rem;font-weight:500;white-space:nowrap}.tenant-card__status--active{background-color:#10b9811f;color:#10b981}.tenant-card__status--inactive{background-color:#9ca3af26;color:#4b5563}.tenant-card__body{display:flex;flex-direction:column;gap:.5rem}.tenant-card__detail{display:flex;justify-content:flex-start;align-items:center;gap:.5rem;font-size:.875rem;color:#374151}.tenant-card__detail .icon{flex-shrink:0;color:#6b7280}.tenant-card__actions{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding-top:1rem;border-top:1px solid #e5e7eb}.tenants{display:flex;flex-direction:column;gap:2rem}.tenants__header{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}.tenants__title{font-size:1.875rem;margin-bottom:.25rem}.tenants__subtitle{margin:0;color:#4b5563}.tenants__card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;padding:1.5rem;padding:2rem}.tenants__form{display:flex;flex-direction:column;gap:1.5rem}.tenants__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.tenants__grid{grid-template-columns:repeat(2,1fr)}}.tenants__field{display:flex;flex-direction:column;gap:.25rem}.tenants__checkbox{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:1rem;background-color:#f9fafb;border-radius:8px;cursor:pointer;transition:background-color .15s ease-in-out}.tenants__checkbox input{cursor:pointer}.tenants__checkbox:hover{background-color:#f3f4f6}.tenants__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.tenants__actions{justify-content:flex-end}}.tenants__list{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.tenants__list{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.tenants__list{grid-template-columns:repeat(3,1fr)}}.tenants--state{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:6rem 2rem;text-align:center;color:#4b5563;font-size:1.125rem}.modules-header{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:2rem}.modules-header__title{font-size:1.875rem;font-weight:600;margin:0 0 .25rem;color:#111827}.modules-header__subtitle{font-size:1rem;color:#4b5563;margin:0}.modules-filters{display:grid;grid-template-columns:1fr;gap:1rem;padding:1.5rem;background-color:#f9fafb;border-radius:8px;margin-bottom:2rem}@media(min-width:768px){.modules-filters{grid-template-columns:repeat(3,1fr)}}.modules-filters__group{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.modules-filters__group--search{grid-column:1/-1}}.module-form-modal__form{display:flex;flex-direction:column;gap:1.5rem}.module-form-modal__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.module-form-modal__grid{grid-template-columns:repeat(2,1fr)}}.module-form-modal__field{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.module-form-modal__field--full{grid-column:1/-1}}.module-form-modal__checkbox{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:1rem;background-color:#f9fafb;border-radius:8px;cursor:pointer;transition:background-color .15s ease-in-out}.module-form-modal__checkbox input{cursor:pointer}.module-form-modal__checkbox:hover{background-color:#f3f4f6}.module-form-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.module-form-modal__actions{justify-content:flex-end}}.delete-module-modal{display:flex;flex-direction:column;gap:1.5rem}.delete-module-modal__message{color:#374151;line-height:1.625;margin:0}.delete-module-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.delete-module-modal__actions{justify-content:flex-end}}.module-card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;display:flex;flex-direction:column;gap:1rem;padding:1.5rem;transition:transform .15s ease-in-out,box-shadow .15s ease-in-out}.module-card:hover{transform:translateY(-2px);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.module-card__header{display:flex;align-items:center;justify-content:space-between;align-items:flex-start;gap:1rem}.module-card__info{flex:1}.module-card__name{font-size:1.125rem;font-weight:600;margin-bottom:.25rem;color:#111827}.module-card__tenant{font-size:.875rem;color:#4b5563;margin:0}.module-card__status{padding:.25rem .5rem;border-radius:6px;font-size:.75rem;font-weight:500;white-space:nowrap}.module-card__status--active{background-color:#10b9811a;color:#10b981}.module-card__status--inactive{background-color:#9ca3af1a;color:#4b5563}.module-card__body{display:flex;flex-direction:column;gap:.5rem;flex:1}.module-card__detail{display:flex;align-items:center;justify-content:flex-start;gap:.25rem;font-size:.875rem;color:#374151}.module-card__detail svg{color:#6b7280;flex-shrink:0}.module-card__actions{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding-top:1rem;border-top:1px solid #e5e7eb}.modules-list{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.modules-list{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.modules-list{grid-template-columns:repeat(3,1fr)}}.modules-list--state{display:flex;align-items:center;justify-content:center;padding:6rem 2rem;text-align:center;color:#4b5563;font-size:1.125rem;font-weight:500}.modules{display:flex;flex-direction:column;gap:2rem}.modules__header{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}.modules__title{font-size:1.875rem;margin-bottom:.25rem}.modules__subtitle{margin:0;color:#4b5563}.modules__filters{display:grid;grid-template-columns:1fr;gap:1rem;padding:1.5rem;background-color:#f9fafb;border-radius:8px}@media(min-width:768px){.modules__filters{grid-template-columns:repeat(3,1fr)}}.modules__filter-group{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.modules__filter-group--search{grid-column:1/-1}}.modules__form{display:flex;flex-direction:column;gap:1.5rem}.modules__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.modules__grid{grid-template-columns:repeat(2,1fr)}}.modules__field{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.modules__field--full{grid-column:1/-1}}.modules__checkbox{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:1rem;background-color:#f9fafb;border-radius:8px;cursor:pointer;transition:background-color .15s ease-in-out}.modules__checkbox input{cursor:pointer}.modules__checkbox:hover{background-color:#f3f4f6}.modules__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.modules__actions{justify-content:flex-end}}.modules__list{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.modules__list{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.modules__list{grid-template-columns:repeat(3,1fr)}}.modules--state{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:6rem 2rem;text-align:center;color:#4b5563;font-size:1.125rem}.users{display:flex;flex-direction:column;gap:2rem}.users__header{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}.users__title{font-size:1.875rem;margin-bottom:.25rem}.users__subtitle{margin:0;color:#4b5563}.users__filters{display:grid;grid-template-columns:1fr;gap:1rem;background-color:#f9fafb;border-radius:8px}@media(min-width:768px){.users__filters{grid-template-columns:repeat(2,1fr)}}@media(min-width:1280px){.users__filters{grid-template-columns:repeat(2,1fr)}}.users__filter-group{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.users__filter-group--search{grid-column:1/-1}}.users__form{display:flex;flex-direction:column;gap:1.5rem}.users__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.users__grid{grid-template-columns:repeat(2,1fr)}}.users__field{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.users__field--full{grid-column:1/-1}}.users__checkbox{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:1rem;background-color:#f9fafb;border-radius:8px;cursor:pointer;transition:background-color .15s ease-in-out}.users__checkbox input{cursor:pointer}.users__checkbox:hover{background-color:#f3f4f6}.users__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.users__actions{justify-content:flex-end}}.users__table{margin-top:1.5rem}.users--state{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:6rem 2rem;text-align:center;color:#4b5563;font-size:1.125rem}.role-badge{display:inline-block;padding:.25rem .5rem;background-color:#0d4b851a;color:#0d4b85;border-radius:6px;font-size:.75rem;font-weight:500}.status-badge{display:inline-block;padding:.25rem .5rem;border-radius:6px;font-size:.75rem;font-weight:500}.status-badge--active{background-color:#10b9811a;color:#10b981}.status-badge--inactive{background-color:#9ca3af1a;color:#4b5563}.tickets-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.tickets-header__title{font-size:2rem;font-weight:600;margin:0;color:var(--color-text-primary)}.tickets-header__subtitle{font-size:1rem;color:var(--color-text-secondary);margin:.5rem 0 0}.tickets-filters{display:flex;gap:1rem;margin-bottom:2rem;flex-wrap:wrap;align-items:flex-end}.tickets-filters__group{flex:1;min-width:200px}.tickets-table{background:var(--color-background-secondary);border-radius:8px}.tickets-table__title{font-size:1.25rem;font-weight:600;margin:0 0 1rem;color:var(--color-text-primary)}.tickets-table__loading,.tickets-table__empty{text-align:center;padding:3rem;color:var(--color-text-secondary)}.ticket-number{font-size:16px;font-weight:700;color:var(--color-primary);text-transform:uppercase}.customer-info{display:flex;flex-direction:column;gap:.25rem;max-width:100px}.customer-info__name{font-weight:500;color:var(--color-text-primary);display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.customer-info__document{font-size:.875rem;color:var(--color-text-secondary)}.status-badge{display:inline-block;padding:.25rem .75rem;border-radius:12px;font-size:.875rem;font-weight:500}.status-badge--pending{background:var(--color-warning-light);color:var(--color-warning)}.status-badge--in_progress{background:var(--color-info-light);color:var(--color-info)}.status-badge--completed{background:var(--color-success-light);color:var(--color-success)}.status-badge--abandoned{background:var(--color-error-light);color:var(--color-error)}.generic-form-modal__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:1.5rem}.generic-form-modal__field{display:flex;flex-direction:column}.generic-form-modal__field--full{grid-column:1/-1}.generic-form-modal__actions{display:flex;gap:1rem;justify-content:flex-end;margin-top:1.5rem}.generic-form-modal__checkbox{display:flex;align-items:center;gap:.5rem}.create-ticket-modal__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:1.5rem}.create-ticket-modal__group{display:flex;flex-direction:column}.create-ticket-modal__actions{display:flex;gap:1rem;justify-content:flex-end;margin-top:1.5rem}.edit-customer-modal__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:1.5rem}.edit-customer-modal__group{display:flex;flex-direction:column}.edit-customer-modal__actions{display:flex;gap:1rem;justify-content:flex-end;margin-top:1.5rem}.attendant-tickets-list{display:flex;flex-direction:column;margin:0}.attendant-tickets-list__title{font-size:1.5rem;font-weight:600;margin:0;color:#111827;padding-bottom:1rem;border-bottom:1px solid #e5e7eb}.attendant-tickets-list__loading,.attendant-tickets-list__empty{display:flex;align-items:center;justify-content:center;padding:6rem 2rem;text-align:center;color:#4b5563;font-size:1.125rem;font-weight:500;min-height:200px}.attendant-tickets-list__ticket-number{font-size:1.25rem;font-weight:700;color:#0d4b85;line-height:1.25;text-transform:uppercase}@media(min-width:640px){.attendant-tickets-list__ticket-number{font-size:1.5rem}}.attendant-tickets-list__customer{display:flex;flex-direction:column;gap:.25rem}.attendant-tickets-list__customer-name{font-weight:600;color:#111827;font-size:1rem;line-height:1.375}.attendant-tickets-list__customer-document{font-size:.875rem;color:#4b5563;font-weight:500}.current-ticket-card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;padding:1.5rem;display:flex;flex-direction:column;gap:1.5rem;border:2px solid #0d4b85;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;transition:box-shadow .2s ease-in-out,transform .2s ease-in-out}.current-ticket-card:hover{box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;transform:translateY(-2px)}.current-ticket-card--empty{flex-direction:column;display:flex;align-items:center;justify-content:center;border:2px dashed #d1d5db;background:#f9fafb;text-align:center;padding:4rem 2rem;min-height:300px}.current-ticket-card__icon{font-size:3rem;margin-bottom:1rem;opacity:.5}.current-ticket-card__title{font-size:1.5rem;font-weight:600;margin:0 0 .5rem;color:#374151}.current-ticket-card__subtitle{font-size:1rem;color:#4b5563;margin:0;line-height:1.625}.current-ticket-card__header{display:flex;align-items:center;justify-content:space-between;align-items:flex-start;gap:1rem;padding-bottom:1.5rem;border-bottom:2px solid #e5e7eb}@media(min-width:640px){.current-ticket-card__header{align-items:center}}.current-ticket-card__ticket-number{font-size:2.25rem;font-weight:700;color:#0d4b85;line-height:1.25}@media(min-width:640px){.current-ticket-card__ticket-number{font-size:3rem}}.current-ticket-card__timer{display:flex;flex-direction:column;align-items:flex-end;gap:.25rem;text-align:right}.current-ticket-card__timer-label{font-size:.75rem;font-weight:500;color:#4b5563;text-transform:uppercase;letter-spacing:.5px}.current-ticket-card__timer-value{font-size:1.5rem;font-weight:700;color:#0d4b85;font-family:Courier New,Courier,monospace;line-height:1.25}@media(min-width:640px){.current-ticket-card__timer-value{font-size:1.875rem}}.current-ticket-card__body{display:flex;flex-direction:column;gap:1.5rem;flex:1}.current-ticket-card__customer{display:flex;flex-direction:column;gap:.25rem;padding:1rem;background:#f9fafb;border-radius:8px}.current-ticket-card__customer-name{font-size:1.25rem;font-weight:600;color:#111827;line-height:1.375}.current-ticket-card__customer-document{font-size:.875rem;color:#4b5563;font-weight:500}.current-ticket-card__module,.current-ticket-card__time{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:.5rem 1rem;background:#f9fafb;border-radius:6px;font-size:1rem}.current-ticket-card__module-label,.current-ticket-card__time-label{font-weight:500;color:#4b5563;min-width:80px}.current-ticket-card__module-name,.current-ticket-card__time-value{color:#111827;font-weight:600}.current-ticket-card__actions{display:flex;flex-direction:column;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:640px){.current-ticket-card__actions{display:flex;align-items:center;justify-content:space-between;flex-direction:row}}.current-ticket-card__call-count{display:flex;align-items:center;justify-content:space-between;padding:.5rem 1rem;background:#f9fafb;border-radius:6px;font-size:1rem}.current-ticket-card__call-count-label{font-weight:500;color:#4b5563;min-width:80px}.current-ticket-card__call-count-value{color:#111827;font-weight:600}.current-ticket-card__modal{display:flex;flex-direction:column;gap:1.5rem}.current-ticket-card__modal-message{color:#374151;line-height:1.625;margin:0}.current-ticket-card__modal-actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.current-ticket-card__modal-actions{justify-content:flex-end}}.attendant-tickets-header{display:flex;flex-direction:column;gap:1rem}@media(min-width:768px){.attendant-tickets-header{display:flex;align-items:center;justify-content:space-between;flex-direction:row;align-items:flex-end}}.attendant-tickets-header>div{display:flex;flex-direction:column;gap:.25rem}.attendant-tickets-header__title{font-size:1.875rem;font-weight:600;margin:0;color:#111827;line-height:1.25}@media(min-width:640px){.attendant-tickets-header__title{font-size:2.25rem}}.attendant-tickets-header__subtitle{font-size:1rem;color:#4b5563;margin:0;font-weight:500;line-height:1.5}.attendant-tickets-header__blocked{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 1.5rem;background:#f59e0b1a;color:#d97706;border-radius:8px;font-weight:600;font-size:.875rem;border:1px solid rgba(245,158,11,.2);transition:all .15s ease-in-out}.attendant-tickets-header__blocked:hover{background:#f59e0b26;border-color:#f59e0b4d}@media(min-width:640px){.attendant-tickets-header__blocked{font-size:1rem;padding:1rem 2rem}}.attendant-tickets-header__btn{max-width:14rem}.tickets{padding:1rem;max-width:1400px;margin:0 auto}.attendant-tickets{display:flex;flex-direction:column;gap:2rem;padding:1.5rem;max-width:1280px;margin:0 auto}@media(min-width:768px){.attendant-tickets{padding:2rem}}.attendant-tickets__content{display:grid;gap:2rem}.attendant-tickets__left{min-width:0}.attendant-tickets__right{width:100%;min-width:0;position:sticky;top:2rem;align-self:start;max-height:calc(100vh - 4rem)}@media(min-width:1024px){.attendant-tickets__right{position:sticky}}.display-pairing{min-height:100vh;display:flex;align-items:center;justify-content:center;background:#fff;padding:2rem}.display-pairing__container{flex-direction:column;display:flex;align-items:center;justify-content:center;gap:2rem;max-width:600px;width:100%;text-align:center;box-shadow:0 25px 50px -12px #00000040;padding:1rem 1.5rem;border-radius:1rem}.display-pairing__brand{flex-direction:column;display:flex;align-items:center;justify-content:center;gap:.5rem}.display-pairing__logo{font-size:3.75rem;animation:float 3s ease-in-out infinite}.display-pairing__brand-name{font-size:1.875rem;font-weight:700;color:#111827;margin:0}.display-pairing__content{display:flex;flex-direction:column;gap:.5rem;width:100%}.display-pairing__title{font-size:2.25rem;font-weight:700;margin:0;color:#111827}.display-pairing__subtitle{font-size:1.125rem;color:#4b5563;line-height:1.625;max-width:500px;margin:0 auto}.display-pairing__code-wrapper{margin:1rem 0}.display-pairing__code-boxes{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}.display-pairing__code-box{width:70px;height:80px;display:flex;align-items:center;justify-content:center;background:#f9fafb;border:2px solid #d1d5db;border-radius:12px;font-size:3rem;font-weight:700;color:#0d4b85;font-family:Courier New,Courier,monospace;transition:all .2s ease-in-out;box-shadow:0 2px 8px #00000014;animation:slideUp .5s ease-out backwards}.display-pairing__code-box:nth-child(1){animation-delay:.1s}.display-pairing__code-box:nth-child(2){animation-delay:.2s}.display-pairing__code-box:nth-child(3){animation-delay:.3s}.display-pairing__code-box:nth-child(4){animation-delay:.4s}.display-pairing__code-box:nth-child(5){animation-delay:.5s}.display-pairing__code-box:nth-child(6){animation-delay:.6s}.display-pairing__code-box:hover{transform:translateY(-2px);box-shadow:0 4px 12px #0000001f;border-color:#0d4b85}.display-pairing__info{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.5rem;background:#f9fafb;border-radius:8px;border:1px solid #e5e7eb}.display-pairing__info-icon{font-size:1.5rem}.display-pairing__info-text{margin:0;font-size:1rem;color:#374151}.display-pairing__info-text strong{color:#0d4b85;font-weight:700}.display-pairing__refresh{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 2rem;font-size:1rem;font-weight:500;border:1px solid #d1d5db;background:#fff;border-radius:8px;cursor:pointer;transition:all .2s ease-in-out;color:#374151;margin-top:.5rem}.display-pairing__refresh:hover:not(:disabled){background:#f9fafb;border-color:#9ca3af;transform:translateY(-1px)}.display-pairing__refresh:disabled{opacity:.6;cursor:not-allowed}.display-pairing__refresh-icon{font-size:1.125rem}.display-pairing__footer{margin-top:.5rem;padding-top:.5rem;border-top:1px solid #e5e7eb}.display-pairing__footer-text{font-size:.875rem;color:#6b7280;margin:0}.display-pairing__loading{flex-direction:column;display:flex;align-items:center;justify-content:center;gap:2rem}.display-pairing__spinner{width:60px;height:60px;border:4px solid #e5e7eb;border-top-color:#0d4b85;border-radius:50%;animation:spin 1s linear infinite}.display-pairing__loading-text{font-size:1.25rem;font-weight:500;color:#374151;margin:0}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.display-view{min-height:100vh;flex-direction:column;display:flex;align-items:center;justify-content:center;background:#0d4b85;padding:6rem;color:#fff}.display-view__loading{font-size:1.875rem;font-weight:600}.display-view__header{text-align:center;margin-bottom:6rem}.display-view__title{font-size:3.75rem;font-weight:700;margin:0 0 1rem;text-shadow:0 4px 8px rgba(0,0,0,.3)}.display-view__subtitle{font-size:1.5rem;opacity:.9;margin:0}.display-view__ticket{flex-direction:column;display:flex;align-items:center;justify-content:center;gap:4rem;background:#fff;color:#111827;padding:6rem;border-radius:16px;box-shadow:0 25px 50px -12px #00000040;min-width:800px;max-width:1000px;text-align:center;animation:slideIn .5s ease-out}.display-view__ticket-number{font-size:3.75rem;font-weight:700;color:#0d4b85;line-height:1.25;letter-spacing:.5rem}.display-view__ticket-customer{font-size:2.25rem;font-weight:600;color:#111827}.display-view__ticket-module{font-size:1.5rem;color:#4b5563;font-weight:500}.display-view__empty{flex-direction:column;display:flex;align-items:center;justify-content:center;gap:2rem;background:#fff;color:#4b5563;padding:6rem;border-radius:16px;box-shadow:0 25px 50px -12px #00000040;min-width:800px;max-width:1000px}.display-view__empty-icon{font-size:3.75rem;opacity:.5}.display-view__empty-message{font-size:1.875rem;font-weight:500;margin:0}@keyframes slideIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.displays-header{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:2rem}.displays-header__title{font-size:1.875rem;font-weight:600;margin:0 0 .25rem;color:#111827}.displays-header__subtitle{font-size:1rem;color:#4b5563;margin:0}.displays-filters{display:grid;grid-template-columns:1fr;gap:1rem;padding:1.5rem;background-color:#f9fafb;border-radius:8px;margin-bottom:2rem}@media(min-width:768px){.displays-filters{grid-template-columns:repeat(3,1fr)}}.displays-filters__group{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.displays-filters__group--search{grid-column:1/-1}}.display-form-modal__form{display:flex;flex-direction:column;gap:1.5rem}.display-form-modal__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.display-form-modal__grid{grid-template-columns:repeat(2,1fr)}}.display-form-modal__field{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.display-form-modal__field--full{grid-column:1/-1}}.display-form-modal__label{font-size:.875rem;font-weight:500;color:#374151;margin-bottom:.25rem}.display-form-modal__required{color:#f04a52;margin-left:.25rem}.display-form-modal__multiselect{padding:1rem;border:1px solid #d1d5db;border-radius:8px;font-size:1rem;min-height:120px;background-color:#fff;transition:border-color .2s ease-in-out}.display-form-modal__multiselect:focus{outline:none;border-color:#0d4b85}.display-form-modal__multiselect--error{border-color:#f04a52}.display-form-modal__hint{font-size:.75rem;color:#6b7280;margin:.25rem 0 0}.display-form-modal__error{font-size:.75rem;color:#f04a52;margin-top:.25rem}.display-form-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.display-form-modal__actions{justify-content:flex-end}}.pairing-code-modal__form{display:flex;flex-direction:column;gap:1.5rem}.pairing-code-modal__field{display:flex;flex-direction:column;gap:.25rem}.pairing-code-modal__hint{font-size:.75rem;color:#6b7280;margin:.25rem 0 0;line-height:1.625}.pairing-code-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.pairing-code-modal__actions{justify-content:flex-end}}.delete-display-modal{display:flex;flex-direction:column;gap:1.5rem}.delete-display-modal__message{color:#374151;line-height:1.625;margin:0}.delete-display-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}@media(min-width:768px){.delete-display-modal__actions{justify-content:flex-end}}.display-card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;padding:1.5rem;display:flex;flex-direction:column;gap:1.5rem;transition:transform .2s ease-in-out,box-shadow .2s ease-in-out}.display-card:hover{transform:translateY(-2px);box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.display-card__header{display:flex;align-items:center;justify-content:space-between;align-items:flex-start;gap:1rem}.display-card__info{display:flex;flex-direction:column;gap:.25rem;flex:1}.display-card__title-row{display:flex;justify-content:flex-start;gap:.5rem;align-items:center}.display-card__type-icon{color:#0d4b85}.display-card__name{font-size:1.25rem;font-weight:600;margin:0;color:#111827}.display-card__tenant{font-size:.875rem;color:#4b5563;margin:0}.display-card__status{padding:.25rem .5rem;border-radius:6px;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px}.display-card__status--active{background-color:#34d399;color:#10b981}.display-card__status--pending{background-color:#fbbf24;color:#f59e0b}.display-card__status--blocked{background-color:#f87171;color:#f04a52}.display-card__body{display:flex;flex-direction:column;gap:.5rem}.display-card__detail{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;font-size:.875rem;color:#374151}.display-card__detail svg{color:#6b7280}.display-card__actions{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding-top:1rem;border-top:1px solid #e5e7eb}.displays-list{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.displays-list{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.displays-list{grid-template-columns:repeat(3,1fr)}}.displays-list--state{display:flex;align-items:center;justify-content:center;padding:6rem 2rem;text-align:center;color:#4b5563;font-size:1.125rem;font-weight:500}.displays{padding:2rem;max-width:1400px;margin:0 auto}.views-turn__current--empty{background:#f9fafb!important;border:1px solid #e5e7eb!important;display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:300px}.views-turn__current--empty .views-turn__empty-title{font-size:clamp(32px,4vw,64px);color:#0d4b85;margin:1rem 0;font-weight:800}.views-turn__current--empty .views-turn__empty-text{font-size:clamp(16px,1.5vw,24px);color:#6b7280;line-height:1.4;max-width:80%;margin:0 auto}.views-turn__current--empty .views-turn__empty-pulse{margin-top:2rem;width:12px;height:12px;background:#0d4b85;border-radius:50%;position:relative}.views-turn__current--empty .views-turn__empty-pulse:after{content:"";position:absolute;width:100%;height:100%;background:inherit;border-radius:inherit;animation:pulse-ring 2s cubic-bezier(.4,0,.6,1) infinite}.audio-banner{position:fixed;bottom:1.5rem;right:1.5rem;background:#0d4b85;color:#fff;padding:.5rem 1rem;border-radius:12px;font-size:.875rem;cursor:pointer;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d;opacity:.9;transition:.2s ease}.audio-banner:hover{opacity:1}.audio-overlay{position:fixed;inset:0;background:#0f172ad9;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);z-index:9999;display:flex;align-items:center;justify-content:center}.audio-overlay__card{background:#fff;border-radius:16px;padding:6rem;text-align:center;max-width:500px;width:90%;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;border:1px solid #e5e7eb}.audio-overlay__icon{font-size:64px;margin-bottom:1.5rem}.audio-overlay__title{font-size:1.5rem;font-weight:800;margin-bottom:1rem}.audio-overlay__text{font-size:1.125rem;color:#4b5563;margin-bottom:2rem}.audio-overlay__button{background:#0d4b85;color:#fff;border:none;padding:1rem 2rem;border-radius:12px;font-weight:700;font-size:1.125rem;cursor:pointer;transition:.2s ease}.audio-overlay__button:hover{opacity:.9}.views-turn{height:100dvh;min-height:100vh;padding:1.5rem;background:#fff;color:#111827;overflow:hidden;box-sizing:border-box;display:grid;grid-template-rows:auto 1fr;gap:1.5rem}.views-turn__header{width:100%;border-radius:0;background:transparent;border:0;padding:0 1.5rem;display:grid;grid-template-columns:1fr;align-items:center}@media(min-width:1024px){.views-turn__header{grid-template-columns:1fr}}.views-turn__header-spacer{display:none}.views-turn__header-logo{height:clamp(44px,6vh,96px);width:auto;object-fit:contain;max-width:70%}.views-turn__header-logo--left{grid-column:1;justify-self:start}.views-turn__grid{display:grid;grid-template-columns:1fr;grid-template-areas:"right" "left";gap:1.5rem;height:100%;min-height:0}@media(min-width:1024px){.views-turn__grid{grid-template-columns:.8fr 1.2fr;grid-template-areas:"left right";align-items:stretch}}.views-turn__left{grid-area:left;border-radius:16px;background:#fff;border:1px solid #e5e7eb;padding:1.5rem;display:grid;grid-template-rows:1fr;gap:1rem;min-height:0}.views-turn__left-body{display:grid;grid-template-columns:1fr;gap:1rem}.views-turn__panel{border-radius:12px;background:#fff;border:1px solid #e5e7eb;padding:1rem;display:grid;grid-template-rows:auto 1fr;gap:.5rem;min-height:0;overflow:hidden}.views-turn__panel-title{font-size:1.125rem;font-weight:800;letter-spacing:.5px;text-transform:uppercase;color:#111827}.views-turn__panel-title--spaced{margin-top:1.5rem}.views-turn__list{display:grid;gap:.5rem;align-content:start;min-height:0;grid-template-rows:repeat(3,minmax(0,1fr));overflow:hidden}.views-turn__list-item{padding:1rem 1.5rem;border-radius:12px;background:#f9fafb;border:1px solid #e5e7eb;display:flex;align-items:center;min-height:0;overflow:hidden}.views-turn__list-item:nth-child(odd){background:#f3f4f6}.views-turn__list-item:nth-child(2n){background:#f9fafb}.views-turn__list-number{font-size:clamp(20px,2.2vw,36px);font-weight:800;line-height:1.25}.views-turn__called{display:grid;grid-template-columns:1fr;gap:1rem;max-height:325px}@media(min-width:768px){.views-turn__called{grid-template-columns:repeat(2,1fr)}}.views-turn__called-item{display:flex;align-items:center;justify-content:center;gap:1rem;padding:1.5rem 2rem;border-radius:12px;background:#fff;border:2px solid #e5e7eb;min-height:0;overflow:hidden;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;max-height:150px}.views-turn__called-item:nth-child(odd){background:#f3f4f6}.views-turn__called-item:nth-child(2n){background:#fff}.views-turn__called-number{font-size:40px;font-weight:800;color:#0d4b85}.views-turn__called-module{font-size:clamp(14px,1.4vw,20px);font-weight:700;color:#374151;opacity:.95;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.views-turn__right{grid-area:right;border-radius:16px;background:#fff;border:1px solid #e5e7eb;padding:1.5rem;min-height:0;display:grid;place-items:center}.views-turn__current-wrap{width:100%;max-width:680px;display:grid;grid-template-rows:auto 1fr;gap:6rem;justify-items:center}.views-turn__current{width:100%;max-width:680px;text-align:center;padding:2rem;border-radius:16px;background:#e0f2fe;border:1px solid #7dd3fc;border:1px solid #3b82f6;max-height:100%;box-sizing:border-box;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a}.views-turn__current-logo{height:clamp(72px,9vh,170px);justify-self:center;width:auto;object-fit:contain;max-width:100%;margin:0 auto;display:block}.views-turn__current-label{font-size:1.125rem;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#111827;margin-bottom:1rem}.views-turn__current-number{font-size:clamp(72px,8.2vw,160px);font-weight:800;line-height:1.25;color:#0d4b85}.views-turn__current-name{font-size:clamp(28px,3.5vw,64px);font-weight:700;color:#374151;margin-bottom:1rem;word-break:break-word}.views-turn__current-module{margin-top:1rem;font-size:clamp(22px,3vw,48px);font-weight:800;color:#111827}.views-turn__current-location{margin-top:.5rem;font-size:clamp(28px,3.6vw,64px);font-weight:800;color:#111827}@media(min-width:640px){.views-turn{padding:.5rem;gap:.5rem}.views-turn__grid{gap:.5rem}.views-turn__left,.views-turn__right{padding:1rem}.views-turn__current{padding:1.5rem}.views-turn__left-body{gap:1rem}.views-turn__panel{padding:.5rem}}@media(max-width:639px){.views-turn{height:auto;min-height:100vh;overflow:auto}.views-turn__header{border-radius:12px;padding:.5rem;gap:.5rem}.views-turn__header-logo{height:56px;max-width:80%}.views-turn__current-logo{height:72px;max-width:80%}.views-turn__current-wrap{gap:4rem}.views-turn__current-location{font-size:1.5rem}.views-turn__grid{height:auto}.views-turn__left{min-height:auto}.views-turn__left-body,.views-turn__panel{grid-template-rows:auto auto}.views-turn__list,.views-turn__called{grid-template-rows:auto}}.views-turn__loading{flex-direction:column;display:flex;align-items:center;justify-content:center;height:100vh;gap:2rem}.views-turn__loading-spinner{width:60px;height:60px;border:4px solid #e5e7eb;border-top-color:#0d4b85;border-radius:50%;animation:spin 1s linear infinite}.views-turn__empty{flex-direction:column;display:flex;align-items:center;justify-content:center;height:100vh;gap:2rem;text-align:center;padding:6rem}.views-turn__empty-icon{font-size:3.75rem;opacity:.5}.views-turn__empty-title{font-size:1.875rem;font-weight:700;color:#111827;margin:0}.views-turn__empty-message{font-size:1.125rem;color:#4b5563;margin:0}.views-turn__list-empty,.views-turn__called-empty{display:flex;align-items:center;justify-content:center;padding:2rem;color:#6b7280;font-size:1rem;font-style:italic}.views-turn__current--empty .views-turn__current-message{font-size:clamp(18px,2vw,32px);font-weight:500;color:#6b7280;margin-top:1rem}.qr-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid #e5e7eb}.qr-header__title{font-size:1.875rem;font-weight:700;color:#111827;margin:0 0 .25rem}.qr-header__subtitle{font-size:1rem;color:#4b5563;margin:0}.qr-filters{display:flex;align-items:center;justify-content:flex-start;gap:1.5rem;margin-bottom:2rem;flex-wrap:wrap}.qr-filters__group{flex:1;min-width:200px}.qr-filters__group--search{flex:2;min-width:300px}.qr-card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:1.5rem;display:flex;flex-direction:column;gap:1rem;transition:.2s ease-in-out;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f}.qr-card:hover{box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;border-color:#d1d5db}.qr-card__header{display:flex;align-items:center;justify-content:space-between;align-items:flex-start;gap:1rem}.qr-card__info{flex:1}.qr-card__title-row{display:flex;align-items:center;justify-content:flex-start;gap:1rem;margin-bottom:.25rem}.qr-card__icon{color:#0d4b85}.qr-card__token{font-size:1.125rem;font-weight:600;color:#111827;margin:0;word-break:break-all}.qr-card__tenant{font-size:.875rem;color:#4b5563;margin:0}.qr-card__status-group{display:flex;align-items:center;justify-content:flex-start;gap:.25rem;flex-direction:column;align-items:flex-end}.qr-card__status{padding:.25rem .5rem;border-radius:6px;font-size:.75rem;font-weight:500;text-transform:uppercase}.qr-card__status--active{background:#34d399;color:#059669}.qr-card__status--inactive{background:#e5e7eb;color:#4b5563}.qr-card__status--expired{background:#f87171;color:#dc2626}.qr-card__qr-image{display:flex;justify-content:center;padding:1rem;background:#f9fafb;border-radius:8px}.qr-card__qr-image img{max-width:200px;max-height:200px;width:100%;height:auto}.qr-card__url{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding:.5rem;background:#f9fafb;border-radius:6px;font-size:.875rem}.qr-card__url-link{color:#0d4b85;text-decoration:none;word-break:break-all}.qr-card__url-link:hover{text-decoration:underline}.qr-card__body{display:flex;flex-direction:column;gap:.5rem}.qr-card__detail{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;font-size:.875rem;color:#4b5563}.qr-card__actions{display:flex;align-items:center;justify-content:flex-start;gap:.5rem;padding-top:1rem;border-top:1px solid #e5e7eb}.qr-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:1.5rem}.qr-list--state{display:flex;align-items:center;justify-content:center;padding:6rem;color:#6b7280;font-size:1.125rem;text-align:center}@media(min-width:640px){.qr-list{grid-template-columns:1fr}}.qr-form-modal__fields{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:2rem}.qr-form-modal__field--full{grid-column:1/-1}.qr-form-modal__label{display:block;font-size:.875rem;font-weight:500;color:#374151;margin-bottom:.25rem}.qr-form-modal__checkbox{margin-left:.5rem;margin-right:.25rem}.qr-form-modal__checkbox-label{font-weight:400}.qr-form-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}.delete-qr-modal__message{margin-bottom:2rem;color:#374151;line-height:1.625}.delete-qr-modal__actions{display:flex;align-items:center;justify-content:space-between;gap:1rem}.qr{padding:2rem;max-width:1280px;margin:0 auto}.qr__admin-single{gap:24px}.qr__admin-single,.qr__admin-card{display:flex;flex-direction:column;align-items:center}.qr__regenate{min-width:220px}.public-qr-services__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;width:100%}.public-qr-services__card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:1rem;display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer;text-align:center;transition:.2s ease-in-out;min-height:100px;position:relative;overflow:hidden;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f}.public-qr-services__card:before{content:"";position:absolute;top:0;left:0;width:6px;height:100%;background:linear-gradient(to bottom,#0d4b85,#1a6ba8);opacity:1;transition:.15s ease-in-out}.public-qr-services__card{background:linear-gradient(135deg,#fff,#0d4b8508)}.public-qr-services__card:hover,.public-qr-services__card:focus,.public-qr-services__card:active{border-color:#1a6ba8;background:#0d4b850d;transform:translateY(-2px);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;outline:none}.public-qr-services__card:hover .public-qr-services__card-name,.public-qr-services__card:focus .public-qr-services__card-name,.public-qr-services__card:active .public-qr-services__card-name{color:#0a3a6b}.public-qr-services__card-name{font-size:.875rem;font-weight:700;color:#0d4b85;text-transform:capitalize;margin:0;line-height:1.25}.public-qr-services__card-description{font-size:.75rem;color:#6b7280;margin-top:.25rem;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.public-qr-services__loading,.public-qr-services__empty{grid-column:1/-1;text-align:center;padding:2rem;color:#6b7280}.public-qr__form-actions{display:flex;justify-content:center}@media(max-width:350px){.public-qr-services__grid{grid-template-columns:1fr}}.public-qr{min-height:100vh;display:flex;flex-direction:column;background-color:#f9fafb;font-family:Roboto,system-ui,sans-serif}.public-qr--loading,.public-qr--error{justify-content:center;align-items:center;text-align:center;padding:2rem}.public-qr__spinner{width:48px;height:48px;border:3px solid #e5e7eb;border-top:3px solid #0d4b85;border-radius:9999px;animation:spin 1s linear infinite;margin:0 auto 1.5rem}.public-qr__header{background-color:#fff;padding:1rem;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;display:flex;justify-content:center;align-items:center;position:sticky;top:0;z-index:1020}.public-qr__header-logo{height:45px;max-width:200px;object-fit:contain}.public-qr__content{flex:1;display:flex;flex-direction:column;width:100%;max-width:600px;margin:0 auto;padding:2rem 1rem}.public-qr .fade-in{animation:fadeIn .4s cubic-bezier(.16,1,.3,1) forwards}.public-qr .scale-up{animation:scaleUp .5s cubic-bezier(.34,1.56,.64,1) forwards}.public-qr .mt-6{margin-top:2rem}.public-qr .w-full{width:100%}.public-qr__welcome{flex:1;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:2rem;background:#fff;border-radius:16px;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.public-qr__welcome-icon{font-size:3rem;color:#0d4b85;margin-bottom:1rem}.public-qr__welcome-title{font-size:1.875rem;font-weight:700;color:#111827;margin-bottom:.5rem}.public-qr__welcome-message{color:#4b5563;font-size:1.125rem;margin-bottom:2rem;line-height:1.5}.public-qr__welcome-button{width:100%;border-radius:8px;font-weight:600;padding:.5rem}.public-qr__welcome-content{display:flex;justify-content:center;align-items:center;flex-direction:column}.public-qr__step{background:#fff;border-radius:16px;padding:2rem;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.public-qr__step-header{text-align:center;margin-bottom:2rem}.public-qr__step-title{font-size:1.5rem;font-weight:700;color:#111827}.public-qr__step-subtitle{color:#4b5563;margin-top:.25rem}.public-qr__form-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:640px){.public-qr__form-grid{grid-template-columns:1fr 1fr}.public-qr__field--full{grid-column:1/-1}.public-qr .sm\\:w-auto{width:auto!important}}.public-qr__form-actions{display:flex;flex-direction:column-reverse;gap:1rem;border-top:1px solid #d1d5db;padding-top:1.5rem}@media(min-width:640px){.public-qr__form-actions{flex-direction:row;justify-content:space-between}}.public-qr__summary{display:flex;flex-direction:column;gap:1.5rem}.public-qr__summary-card{background:#f9fafb;border-radius:12px;padding:1.5rem;border:1px solid #e5e7eb}.public-qr__summary-subtitle{font-size:1.125rem;font-weight:600;color:#111827;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid #e5e7eb}.public-qr__summary-info p{display:flex;align-items:center;gap:.5rem;color:#4b5563;margin-bottom:.5rem;font-size:1rem}.public-qr__summary-info p strong{color:#111827}.public-qr__summary-service{display:flex;align-items:center;gap:1rem}.public-qr__summary-service-icon{background:#10b9811a;color:#10b981;width:40px;height:40px;border-radius:9999px;display:flex;justify-content:center;align-items:center;font-size:1.5rem}.public-qr__summary-service-name{font-size:1.125rem;font-weight:600;color:#111827}.public-qr__summary-service-description{font-size:.875rem;color:#4b5563}.public-qr__summary-actions{display:flex;flex-direction:column-reverse;gap:1rem;margin-top:2rem}.public-qr__summary-actions button{max-height:40px;padding:1.5rem 6rem}@media(min-width:640px){.public-qr__summary-actions{flex-direction:row;justify-content:space-between}}.public-qr__result{flex:1;display:flex;justify-content:center;align-items:center}.public-qr__result-content{background:#fff;border-radius:16px;padding:3rem 2rem;text-align:center;box-shadow:0 25px 50px -12px #00000040;width:100%}.public-qr__result-icon{color:#10b981;margin-bottom:1rem;animation:bounce .5s cubic-bezier(.175,.885,.32,1.275) forwards}.public-qr__result-title{font-size:1.5rem;font-weight:700;color:#111827;margin-bottom:2rem}.public-qr__result-ticket-box{background:linear-gradient(135deg,#0d4b85,#0a3a6b);border-radius:12px;padding:2rem;color:#fff;margin-bottom:2rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -2px #0000000d}.public-qr__result-ticket-label{font-size:.875rem;opacity:.9;text-transform:uppercase;letter-spacing:1px;margin-bottom:.5rem}.public-qr__result-number{font-size:3.75rem;font-weight:800;line-height:1}.public-qr__result-message{font-weight:500;color:#4b5563;margin-bottom:2rem}.public-qr__result-info{background:#f9fafb;border-radius:8px;padding:1rem;margin-bottom:2rem}.public-qr__result-info-row{display:flex;justify-content:space-between;color:#4b5563;font-size:1rem;margin-bottom:.5rem}.public-qr__result-info-row:last-child{margin-bottom:0}.public-qr__result-info-row strong{color:#111827}.public-qr__result-button{width:100%;border-radius:8px}@keyframes spin{to{transform:rotate(360deg)}}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes scaleUp{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes bounce{0%{transform:scale(0)}50%{transform:scale(1.2)}to{transform:scale(1)}}.qr-display{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;padding:1.5rem;background:linear-gradient(135deg,#f9fafb,#fff,#f9fafb);position:relative;overflow:hidden}.qr-display:before{content:"";position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(13,75,133,.03) 0%,transparent 70%);animation:rotate 20s linear infinite;z-index:0}.qr-display>*{position:relative;z-index:1}.qr-display__logo{width:auto;height:60px;max-width:200px;object-fit:contain;margin-bottom:2rem;filter:drop-shadow(0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06));transition:transform .2s ease-in-out}@media(min-width:640px){.qr-display__logo{height:80px;max-width:250px}}@media(min-width:768px){.qr-display__logo{height:100px;max-width:300px;margin-bottom:3rem}}@media(min-width:1024px){.qr-display__logo{height:120px;max-width:350px}}.qr-display__logo:hover{transform:scale(1.05)}.qr-display h1{font-size:1.5rem;font-weight:700;color:#111827;margin:0 0 2rem;text-align:center;text-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);line-height:1.25}@media(min-width:640px){.qr-display h1{font-size:1.875rem;margin-bottom:3rem}}@media(min-width:768px){.qr-display h1{font-size:2.25rem;margin-bottom:4rem}}@media(min-width:1024px){.qr-display h1{font-size:3rem}}.qr-display__image{width:200px;height:200px;object-fit:contain;border-radius:12px;background:#fff;padding:1rem;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a,0 0 0 1px #e5e7eb80;transition:all .3s ease-in-out;margin-bottom:2rem;position:relative}.qr-display__image:before{content:"";position:absolute;inset:0;border-radius:12px;background:linear-gradient(135deg,rgba(255,255,255,.1) 0%,transparent 50%);pointer-events:none}.qr-display__image:after{content:"";position:absolute;inset:-4px;border-radius:16px;padding:2px;background:linear-gradient(135deg,#1a6ba8,#0a3a6b);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.3;z-index:-1}@media(min-width:640px){.qr-display__image{width:250px;height:250px;padding:1.5rem;margin-bottom:3rem}}@media(min-width:768px){.qr-display__image{width:300px;height:300px;padding:2rem;box-shadow:0 25px 50px -12px #00000040,0 0 0 1px #e5e7eb80}}@media(min-width:1024px){.qr-display__image{width:400px;height:400px;padding:3rem}}@media(min-width:1280px){.qr-display__image{width:450px;height:450px}}@media(min-width:1536px){.qr-display__image{width:500px;height:500px}}.qr-display__image:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 25px 50px -12px #00000040,0 0 0 1px #0d4b8533}.qr-display p{font-size:1rem;color:#4b5563;text-align:center;margin:0;max-width:500px;line-height:1.625;padding:0 1rem}@media(min-width:640px){.qr-display p{font-size:1.125rem;max-width:600px}}@media(min-width:768px){.qr-display p{font-size:1.25rem;max-width:700px;padding:0 1.5rem}}@media(min-width:1024px){.qr-display p{font-size:1.5rem;max-width:800px}}.qr-display:has(p:only-child) p{font-size:1.125rem;color:#6b7280;font-weight:500}@media(min-width:768px){.qr-display:has(p:only-child) p{font-size:1.25rem}}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@media(min-width:1024px){.qr-display{padding:3rem}.qr-display__image{position:relative}.qr-display__image:before{background:linear-gradient(135deg,rgba(13,75,133,.05) 0%,transparent 50%)}}@media(prefers-color-scheme:dark){.qr-display{background:linear-gradient(135deg,#111827,#1f2937,#111827)}.qr-display h1{color:#fff}.qr-display__image{background:#1f2937;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a,0 0 0 1px #37415180}.qr-display p{color:#d1d5db}}.services-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding:1rem 1.5rem;background:#fff;border-radius:8px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f}.services-header__title{font-size:1.5rem;font-weight:700;color:#111827;margin:0 0 .25rem}.services-header__subtitle{font-size:.875rem;color:#4b5563;margin:0}.services-filters{display:grid;grid-template-columns:1fr;gap:1rem;padding:1.5rem;background-color:#f9fafb;border-radius:8px;margin-bottom:2rem}@media(min-width:768px){.services-filters{grid-template-columns:repeat(3,1fr)}}.services-filters__group{display:flex;flex-direction:column;gap:.25rem}@media(min-width:768px){.services-filters__group--search{grid-column:1/-1}}.service-card{background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;display:flex;flex-direction:column;gap:1rem;padding:1.5rem;transition:transform .15s ease-in-out,box-shadow .15s ease-in-out}.service-card:hover{transform:translateY(-2px);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.service-card__header{display:flex;align-items:center;justify-content:space-between;align-items:flex-start;gap:1rem}.service-card__info{flex:1}.service-card__name{font-size:1.125rem;font-weight:600;margin-bottom:.25rem;color:#111827}.service-card__tenant{font-size:.875rem;color:#4b5563;margin:0}.service-card__status{padding:.25rem .5rem;border-radius:6px;font-size:.75rem;font-weight:500;white-space:nowrap}.service-card__status--active{background-color:#10b9811a;color:#10b981}.service-card__status--inactive{background-color:#9ca3af1a;color:#4b5563}.service-card__body{display:flex;flex-direction:column;gap:.5rem;flex:1}.service-card__detail{display:flex;align-items:center;justify-content:flex-start;gap:.25rem;font-size:.875rem;color:#374151}.service-card__detail svg{color:#6b7280;flex-shrink:0}.service-card__actions{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding-top:1rem;border-top:1px solid #e5e7eb}.services-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}.services-list--state{padding:2rem;text-align:center;color:#6b7280;font-size:1rem}.service-form-modal__form{display:flex;flex-direction:column;gap:1.5rem}.service-form-modal__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}@media(min-width:768px){.service-form-modal__grid{grid-template-columns:1fr}}.service-form-modal__field--full{grid-column:1/-1}.service-form-modal__checkbox{display:flex;align-items:center;gap:.5rem;cursor:pointer;font-size:.875rem;color:#374151}.service-form-modal__checkbox input[type=checkbox]{width:18px;height:18px;cursor:pointer}.service-form-modal__actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid #e5e7eb}.delete-service-modal__message{margin-bottom:1.5rem;color:#374151;line-height:1.625}.delete-service-modal__message strong{color:#111827;font-weight:600}.delete-service-modal__actions{display:flex;justify-content:flex-end;gap:1rem}.services{padding:1.5rem;display:flex;flex-direction:column;gap:1.5rem}*{margin:0;padding:0;box-sizing:border-box}html{font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body{font-family:Roboto;font-size:1rem;line-height:1.5;color:#111827;background-color:#f9fafb;min-height:100vh}#root{min-height:100vh}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.25;color:#111827;margin-bottom:1rem}h1{font-size:1.875rem}@media(min-width:768px){h1{font-size:2.25rem}}h2{font-size:1.5rem}@media(min-width:768px){h2{font-size:1.875rem}}h3{font-size:1.25rem}@media(min-width:768px){h3{font-size:1.5rem}}h4{font-size:1.125rem}@media(min-width:768px){h4{font-size:1.25rem}}h5{font-size:1rem}@media(min-width:768px){h5{font-size:1.125rem}}h6{font-size:.875rem}@media(min-width:768px){h6{font-size:1rem}}p{color:#374151}a{color:#0d4b85;text-decoration:none;transition:color .15s ease-in-out}a:hover{color:#0f5a9f}.container{width:100%;max-width:1280px;margin:0 auto;padding:0 1rem}@media(min-width:768px){.container{padding:0 2rem}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}body::-webkit-scrollbar{width:8px;height:8px}body::-webkit-scrollbar-track{background:#f3f4f6}body::-webkit-scrollbar-thumb{background:#9ca3af;border-radius:9999px}body::-webkit-scrollbar-thumb:hover{background:#6b7280}
