@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes slide-up{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}@keyframes scale-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.component-spinner{box-sizing:border-box;border-style:solid;border-color:#0000;border-top-color:var(--info);border-radius:50%;animation:.75s linear infinite spin;display:inline-block}.component-spinner.spinner-small{border-width:2px;width:16px;height:16px}.component-spinner.spinner-medium{border-width:3px;width:32px;height:32px}.component-spinner.spinner-large{border-width:4px;width:48px;height:48px}.component-spinner .spinner-sr-only{clip-path:inset(50%);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@keyframes modal-fade-in{0%{opacity:0}to{opacity:1}}@keyframes modal-scale-in{0%{opacity:0;transform:scale(.95)translateY(-10px)}to{opacity:1;transform:scale(1)translateY(0)}}.component-modal-overlay{z-index:1000;justify-content:center;align-items:center;padding:24px;animation:.2s ease-out modal-fade-in;display:flex;position:fixed;inset:0}.component-modal-overlay .modal-overlay-backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background-color:#00060d33;position:absolute;inset:0}.component-modal-overlay .modal-overlay-card{background-color:var(--surface);border-radius:24px;flex-direction:column;gap:32px;width:100%;max-width:400px;max-height:calc(100vh - 48px);padding:24px;animation:.2s ease-out modal-scale-in;display:flex;position:relative;overflow:hidden;box-shadow:0 20px 24px -4px #00000014,0 8px 8px -4px #00000008}.component-modal-overlay .modal-overlay-header{justify-content:space-between;align-items:flex-start;display:flex}.component-modal-overlay .modal-overlay-title{color:var(--text-primary);margin:0;font-size:18px;font-weight:600;line-height:1.5}.component-modal-overlay .modal-overlay-close{color:var(--text-muted);cursor:pointer;background-color:#0000;border:none;flex-shrink:0;justify-content:center;align-items:center;padding:0;transition:color .15s;display:flex}.component-modal-overlay .modal-overlay-close:hover{color:var(--text-primary)}.component-modal-overlay .modal-overlay-close:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}.component-modal-overlay .modal-overlay-body{color:var(--text-secondary);font-size:16px;line-height:1.5;overflow-y:auto}@keyframes toast-slide-in{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}.component-toast-container{z-index:2000;pointer-events:none;flex-direction:column;gap:10px;width:100%;max-width:350px;display:flex;position:fixed;top:20px;right:20px}.component-toast{pointer-events:auto;border:1px solid #0000;border-radius:8px;align-items:center;gap:8px;padding:16px;font-size:16px;font-weight:500;line-height:1.5;animation:.3s ease-out toast-slide-in;display:flex;box-shadow:0 12px 16px -4px #00000014,0 4px 6px -2px #00000008}.component-toast.toast-success{color:var(--success-text);background-color:var(--success-bg);border-color:var(--success)}.component-toast.toast-success .toast-close{color:var(--success-text)}.component-toast.toast-error{color:var(--danger-text);background-color:var(--danger-bg);border-color:var(--danger)}.component-toast.toast-error .toast-close{color:var(--danger-text)}.component-toast.toast-warning{color:var(--warning-text);background-color:var(--warning-bg);border-color:var(--warning)}.component-toast.toast-warning .toast-close{color:var(--warning-text)}.component-toast.toast-info{color:var(--info-text);background-color:var(--info-bg);border-color:var(--info)}.component-toast.toast-info .toast-close{color:var(--info-text)}.component-toast .toast-icon{flex-shrink:0;justify-content:center;align-items:center;display:flex}.component-toast .toast-message{overflow-wrap:break-word;flex:1}.component-toast .toast-close{opacity:.7;cursor:pointer;background-color:#0000;border:none;flex-shrink:0;justify-content:center;align-items:center;padding:0;line-height:1;transition:opacity .15s;display:flex}.component-toast .toast-close:hover{opacity:1}.component-input-field{flex-direction:column;gap:6px;width:100%;display:flex}.component-input-field .input-field-label{color:var(--text-secondary);font-size:14px;font-weight:500;line-height:1.5}.component-input-field .input-field-wrapper{align-items:center;display:flex;position:relative}.component-input-field .input-field-input{border:1px solid var(--border);box-sizing:border-box;width:100%;color:var(--text-primary);background-color:var(--surface);border-radius:8px;outline:none;padding:10px 14px;font-family:inherit;font-size:16px;font-weight:400;line-height:1.5;transition:border-color .2s,box-shadow .2s}.component-input-field .input-field-input::placeholder{color:var(--text-muted)}.component-input-field .input-field-input:focus{box-shadow:0 0 0 4px var(--brand-primary-light);border-color:var(--success-dark)}.component-input-field .input-field-input:disabled{color:var(--text-muted);cursor:not-allowed;background-color:var(--neutral-50)}.component-input-field .input-field-suffix{align-items:center;display:flex;position:absolute;right:14px}.component-input-field .input-field-hint{color:var(--text-secondary);font-size:14px;font-weight:400;line-height:1.5}.component-input-field .input-field-error{color:var(--danger-dark);font-size:14px;font-weight:400;line-height:1.5}.component-input-field.input-field-has-suffix .input-field-input{padding-right:40px}.component-input-field.input-field-has-error .input-field-input{border-color:var(--danger-light)}.component-input-field.input-field-has-error .input-field-input:focus{box-shadow:0 0 0 4px var(--danger-opacity-30);border-color:var(--danger-light)}.component-input-field.input-field-disabled .input-field-label{color:var(--text-muted)}.component-password-input{display:contents}.component-password-input .password-input-toggle{color:var(--text-muted);cursor:pointer;background:0 0;border:none;justify-content:center;align-items:center;padding:0;display:flex}.component-button{cursor:pointer;-webkit-user-select:none;user-select:none;white-space:nowrap;border:1px solid #0000;border-radius:16px;outline:none;justify-content:center;align-items:center;font-family:inherit;font-weight:500;line-height:1.5;transition:background-color .2s,border-color .2s,color .2s,box-shadow .2s;display:inline-flex;position:relative}.component-button:focus-visible{box-shadow:0 0 0 4px var(--brand-primary-opacity-30)}.component-button.button-size-large{padding:12px 20px;font-size:16px}.component-button.button-size-small{padding:10px 16px;font-size:14px}.component-button.button-icon-only.button-size-large{padding:12px}.component-button.button-icon-only.button-size-small{padding:10px}.component-button.button-disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.component-button.button-loading{cursor:wait}.component-button.button-loading .button-content{visibility:hidden}.component-button.button-loading .button-spinner{margin:auto;position:absolute;inset:0}.component-button.button-primary{color:var(--success-text);background-color:var(--brand-primary);border-color:var(--brand-primary)}.component-button.button-primary:hover:not(:disabled){background-color:var(--brand-primary-dark);border-color:var(--brand-primary-dark)}.component-button.button-secondary{color:var(--success-text);background-color:var(--success-bg);border-color:var(--brand-primary-light)}.component-button.button-secondary:hover:not(:disabled){background-color:var(--brand-primary-light);border-color:var(--brand-primary-light)}.component-button.button-outline{color:var(--neutral-700);background-color:var(--surface);border-color:var(--border)}.component-button.button-outline:hover:not(:disabled){background-color:var(--surface-hover);border-color:var(--border-hover)}.component-button.button-danger{color:var(--text-primary);background-color:var(--danger);border-color:var(--danger)}.component-button.button-danger:hover:not(:disabled){background-color:var(--danger-dark);border-color:var(--danger-dark)}.component-button.button-danger:focus-visible{box-shadow:0 0 0 4px var(--danger-opacity-30)}.component-button.button-link{color:var(--success-text);background-color:#0000;border:none;border-radius:0;padding:0;text-decoration:underline}.component-button.button-link:hover:not(:disabled){color:var(--brand-primary-dark)}.component-button.button-ghost{color:var(--neutral-700);background-color:#0000;border:none;border-radius:0;padding:0}.component-button.button-ghost:hover:not(:disabled){text-decoration:underline}.component-button .button-content{justify-content:center;align-items:center;gap:8px;display:inline-flex}.component-button .button-icon{flex-shrink:0;justify-content:center;align-items:center;display:inline-flex}.component-button .button-title{display:inline-block}.component-button .button-spinner{border-top-color:currentColor;flex-shrink:0}.component-login-screen{flex-direction:column;gap:24px;display:flex}.component-login-screen .login-screen-logo{width:174px;height:54px}.component-login-screen .login-screen-header{flex-direction:column;gap:4px;display:flex}.component-login-screen .login-screen-header .login-screen-title{color:var(--neutral-700);letter-spacing:-.36px;margin:0;font-size:36px;font-weight:700;line-height:1.3}.component-login-screen .login-screen-header .login-screen-subtitle{color:var(--text-secondary);margin:0;font-size:14px;line-height:1.5}.component-login-screen .login-screen-form{flex-direction:column;gap:24px;display:flex}.component-login-screen .login-screen-fields{flex-direction:column;gap:12px;display:flex}.component-login-screen .login-screen-password-wrapper{position:relative}.component-login-screen .login-screen-password-wrapper .login-screen-forgot-link{color:var(--success-text);cursor:pointer;background:0 0;border:none;padding:0;font-size:14px;font-weight:500;text-decoration:underline;position:absolute;top:0;right:0}.component-login-screen .login-screen-remember{cursor:pointer;align-items:center;gap:8px;display:flex}.component-login-screen .login-screen-remember input[type=checkbox]{border:1px solid var(--border);cursor:pointer;appearance:none;background-color:var(--surface);border-radius:4px;width:18px;height:18px;margin:0;transition:background-color .15s,border-color .15s}.component-login-screen .login-screen-remember input[type=checkbox]:checked{background-color:var(--brand-primary-darker);border-color:var(--brand-primary-darker);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:14px 14px}.component-login-screen .login-screen-remember input[type=checkbox]:focus-visible{outline:2px solid var(--brand-primary-opacity-30);outline-offset:1px}.component-login-screen .login-screen-remember span{color:var(--text-primary);font-size:16px;line-height:1.5}.component-login-screen .login-screen-actions{flex-direction:column;align-items:center;gap:8px;display:flex}.component-login-screen .login-screen-actions>.component-button:not(.button-link){width:100%}.component-login-screen .login-screen-divider{align-items:center;gap:16px;width:100%;display:flex}.component-login-screen .login-screen-divider .login-screen-divider-line{background-color:var(--border);flex:1;height:1px}.component-login-screen .login-screen-divider .login-screen-divider-text{color:var(--text-secondary);font-size:14px;font-weight:500}.component-login-screen .login-screen-error{text-align:center;color:var(--danger-text);background-color:var(--danger-bg);border-radius:8px;padding:12px;font-size:14px}.component-password-recovery-screen{flex-direction:column;gap:24px;display:flex}.component-password-recovery-screen .password-recovery-screen-logo{width:174px;height:54px}.component-password-recovery-screen .password-recovery-screen-header{flex-direction:column;gap:4px;display:flex}.component-password-recovery-screen .password-recovery-screen-header .password-recovery-screen-title{color:var(--neutral-700);letter-spacing:-.28px;margin:0;font-size:28px;font-weight:700;line-height:1.4}.component-password-recovery-screen .password-recovery-screen-header .password-recovery-screen-subtitle{color:var(--text-secondary);margin:0;font-size:14px;line-height:1.5}.component-password-recovery-screen .password-recovery-screen-form{flex-direction:column;gap:24px;display:flex}.component-password-recovery-screen .password-recovery-screen-fields{flex-direction:column;gap:8px;display:flex}.component-password-recovery-screen .password-recovery-screen-error{text-align:center;color:var(--danger-text);background-color:var(--danger-bg);border-radius:8px;padding:12px;font-size:14px}.component-password-recovery-screen .password-recovery-screen-actions{flex-direction:column;align-items:center;gap:16px;display:flex}.component-password-recovery-screen .password-recovery-screen-actions>.component-button:not(.button-link){width:100%}.component-password-reset-screen{flex-direction:column;gap:24px;display:flex}.component-password-reset-screen .password-reset-screen-logo{width:174px;height:54px}.component-password-reset-screen .password-reset-screen-header{flex-direction:column;gap:4px;display:flex}.component-password-reset-screen .password-reset-screen-header .password-reset-screen-title{color:var(--neutral-700);letter-spacing:-.28px;margin:0;font-size:28px;font-weight:700;line-height:1.4}.component-password-reset-screen .password-reset-screen-header .password-reset-screen-subtitle{color:var(--text-secondary);margin:0;font-size:14px;line-height:1.5}.component-password-reset-screen .password-reset-screen-form{flex-direction:column;gap:24px;display:flex}.component-password-reset-screen .password-reset-screen-fields{flex-direction:column;gap:8px;display:flex}.component-password-reset-screen .password-reset-screen-requirements{flex-direction:column;gap:4px;display:flex}.component-password-reset-screen .password-reset-screen-requirement{align-items:center;gap:8px;display:flex}.component-password-reset-screen .password-reset-screen-requirement-indicator{background-color:var(--neutral-100);border-radius:100px;flex-shrink:0;justify-content:center;align-items:center;width:12px;height:12px;display:flex}.component-password-reset-screen .password-reset-screen-requirement-indicator-met{background-color:var(--success-text)}.component-password-reset-screen .password-reset-screen-requirement-label{color:var(--text-secondary);font-size:14px;line-height:1.5}.component-password-reset-screen .password-reset-screen-error{text-align:center;color:var(--danger-text);background-color:var(--danger-bg);border-radius:8px;padding:12px;font-size:14px}.component-password-reset-screen .password-reset-screen-actions{flex-direction:column;align-items:center;gap:16px;display:flex}.component-password-reset-screen .password-reset-screen-actions>.component-button:not(.button-link){width:100%}.component-auth-layout{background-color:var(--brand-primary);justify-content:center;align-items:center;width:100dvw;height:100dvh;display:flex;position:relative;overflow:hidden}.component-auth-layout .auth-layout-background{opacity:.3;pointer-events:none;width:110%;height:auto;position:absolute;bottom:-20%;right:-5%}.component-auth-layout .auth-layout-card{z-index:1;border:1px solid var(--brand-primary-light);background-color:var(--surface);border-radius:24px;flex-direction:column;gap:32px;width:100%;max-width:440px;padding:40px;display:flex;position:relative;box-shadow:0 24px 48px #0000002e}.component-badge{white-space:nowrap;border:1px solid;border-radius:16px;justify-content:center;align-items:center;font-family:inherit;line-height:1.5;display:inline-flex}.component-badge.badge-size-small{padding:2px 8px;font-size:12px;font-weight:500}.component-badge.badge-size-small.badge-icon-leading{gap:4px;padding:2px 8px 2px 6px}.component-badge.badge-size-small.badge-icon-trailing{gap:4px;padding:2px 6px 2px 8px}.component-badge.badge-size-small.badge-icon-only{padding:4px}.component-badge.badge-size-small.badge-dot{gap:4px;padding:2px 8px}.component-badge.badge-size-large{padding:4px 12px;font-size:14px;font-weight:400}.component-badge.badge-size-large.badge-icon-leading{gap:4px;padding:4px 12px 4px 10px}.component-badge.badge-size-large.badge-icon-trailing{gap:4px;padding:4px 10px 4px 12px}.component-badge.badge-size-large.badge-icon-only{padding:8px}.component-badge.badge-size-large.badge-dot{gap:4px;padding:4px 12px}.component-badge.badge-gray{color:var(--neutral-500);background-color:var(--neutral-100);border-color:var(--neutral-400)}.component-badge.badge-gray .badge-dot-indicator{background-color:var(--neutral-500)}.component-badge.badge-primary{color:var(--info-dark);background-color:var(--info-bg);border-color:var(--info)}.component-badge.badge-primary .badge-dot-indicator{background-color:var(--info)}.component-badge.badge-success{color:var(--success-text);background-color:var(--success-bg);border-color:var(--success-dark)}.component-badge.badge-success .badge-dot-indicator{background-color:var(--success-dark)}.component-badge.badge-warning{color:var(--warning-text);background-color:var(--warning-bg);border-color:var(--warning)}.component-badge.badge-warning .badge-dot-indicator{background-color:var(--warning)}.component-badge.badge-error{color:var(--danger-text);background-color:var(--danger-bg);border-color:var(--danger-dark)}.component-badge.badge-error .badge-dot-indicator{background-color:var(--danger-dark)}.component-badge .badge-label{text-align:center;display:inline-block}.component-badge .badge-icon{flex-shrink:0;justify-content:center;align-items:center;display:flex}.component-badge .badge-dismiss{color:inherit;cursor:pointer;background-color:#0000;border:none;flex-shrink:0;justify-content:center;align-items:center;padding:0;display:flex}.component-badge .badge-dot-indicator{border-radius:50%;flex-shrink:0;width:8px;height:8px}.component-tooltip{display:inline-block}.tooltip-content{top:var(--tooltip-top);left:var(--tooltip-left);z-index:100;color:var(--surface);pointer-events:none;background-color:var(--neutral-900);transform:var(--tooltip-transform,translate(-50%, -100%));white-space:nowrap;border-radius:8px;padding:6px 10px;font-size:12px;font-weight:400;line-height:1.4;position:fixed;box-shadow:0 4px 8px -2px #0000001a,0 2px 4px -2px #0000000f}.sidebar-user-skeleton .sidebar-user-avatar-skeleton{background-color:var(--neutral-100);border-radius:50%;flex-shrink:0;width:32px;height:32px;animation:1.2s ease-in-out infinite sidebar-user-skeleton-pulse;display:block}.sidebar-user-skeleton .sidebar-user-name-skeleton{background-color:var(--neutral-100);border-radius:4px;width:140px;height:24px;animation:1.2s ease-in-out infinite sidebar-user-skeleton-pulse;display:block}.sidebar-user-skeleton .sidebar-user-role-skeleton{background-color:var(--neutral-100);border-radius:999px;align-self:flex-start;width:56px;height:20px;animation:1.2s ease-in-out infinite sidebar-user-skeleton-pulse;display:block}@keyframes sidebar-user-skeleton-pulse{0%,to{opacity:1}50%{opacity:.5}}.component-sidebar{background-color:var(--surface);border-right:1px solid var(--neutral-100);flex-direction:column;width:280px;min-width:280px;max-width:320px;transition:width .2s,min-width .2s,max-width .2s;display:flex}.component-sidebar .sidebar-brand{padding:40px 24px 24px}.component-sidebar .sidebar-logo{width:120px;height:37px;transition:width .2s,height .2s}.component-sidebar .sidebar-toggle{width:32px;height:32px;color:var(--neutral-700);cursor:pointer;background-color:var(--neutral-50);border:none;border-radius:50%;flex-shrink:0;justify-content:center;align-self:flex-end;align-items:center;margin-right:20px;padding:0;transition:background-color .15s;display:flex}.component-sidebar .sidebar-toggle:hover{background-color:var(--neutral-100)}.component-sidebar .sidebar-toggle:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}.component-sidebar .sidebar-nav{flex-direction:column;flex:1;padding:8px 0;display:flex;overflow-y:auto}.component-sidebar .sidebar-item-tooltip{width:100%;display:block}.component-sidebar .sidebar-nav-section{flex-direction:column;display:flex}.component-sidebar .sidebar-nav-section.sidebar-nav-section-with-header{border-top:1px solid var(--neutral-100)}.component-sidebar .sidebar-nav-item{text-align:left;width:100%;color:var(--neutral-700);cursor:pointer;background-color:#0000;border:none;border-right:2px solid #0000;outline:none;align-items:center;gap:12px;padding:16px 24px;font-family:inherit;font-size:14px;font-weight:400;line-height:1.5;display:flex}.component-sidebar .sidebar-nav-item:hover{background-color:var(--success-bg)}.component-sidebar .sidebar-nav-item.sidebar-nav-item-active{color:var(--success-text);background-color:var(--success-bg);border-right-color:var(--brand-primary);font-weight:600}.component-sidebar .sidebar-nav-item.sidebar-nav-item-active .sidebar-nav-item-icon{color:var(--brand-primary)}.component-sidebar .sidebar-nav-item.sidebar-nav-item-logout{color:var(--danger-dark)}.component-sidebar .sidebar-nav-item.sidebar-nav-item-logout:hover{background-color:var(--danger-bg)}.component-sidebar .sidebar-nav-item-icon{flex-shrink:0;justify-content:center;align-items:center;width:16px;height:16px;display:flex}.component-sidebar .sidebar-nav-item-label{opacity:1;white-space:nowrap;flex:1;min-width:0;transition:opacity .2s;overflow:hidden}.component-sidebar .sidebar-footer{flex-direction:column;gap:12px;margin-top:auto;padding:16px 0 24px;display:flex}.component-sidebar .sidebar-user{align-items:center;gap:12px;padding:0 20px;display:flex}.component-sidebar .sidebar-user-info{opacity:1;flex-direction:column;gap:2px;min-width:0;transition:opacity .2s;display:flex;overflow:hidden}.component-sidebar .sidebar-user-avatar{width:32px;height:32px;color:var(--surface);background-color:var(--info);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;font-size:12px;font-weight:600;display:flex;overflow:hidden}.component-sidebar .sidebar-user-avatar img{object-fit:cover;width:100%;height:100%}.component-sidebar .sidebar-user-name{color:var(--neutral-700);font-size:16px;font-weight:400;line-height:1.5}.component-sidebar .sidebar-user-role{align-self:flex-start}.component-sidebar .sidebar-footer-actions{flex-direction:column;display:flex}.component-sidebar .sidebar-section-label{text-align:left;width:100%;color:var(--text-secondary);cursor:pointer;letter-spacing:.12px;background-color:#0000;border:none;align-items:center;gap:12px;padding:16px 24px 8px;font-family:inherit;font-size:12px;font-weight:400;line-height:1.5;display:flex}.component-sidebar .sidebar-section-label span{flex:1}.component-sidebar .sidebar-section-chevron{transition:transform .15s}.component-sidebar .sidebar-section-chevron.sidebar-section-chevron-collapsed{transform:rotate(180deg)}.component-sidebar.collapsed{width:64px;min-width:64px;max-width:64px}.component-sidebar.collapsed .sidebar-brand{justify-content:center;padding:24px 0 16px;display:flex}.component-sidebar.collapsed .sidebar-logo{width:40px;height:12px}.component-sidebar.collapsed .sidebar-toggle{align-self:center;margin-right:0}.component-sidebar.collapsed .sidebar-nav-item{justify-content:center;gap:0;padding:16px 0}.component-sidebar.collapsed .sidebar-nav-item.sidebar-nav-item-active{background-color:var(--success-bg)}.component-sidebar.collapsed .sidebar-nav-item-label{opacity:0;pointer-events:none;flex:none;width:0}.component-sidebar.collapsed .sidebar-section-label{display:none}.component-sidebar.collapsed .sidebar-user{justify-content:center;gap:0;padding:0}.component-sidebar.collapsed .sidebar-user-info{opacity:0;pointer-events:none;width:0}@media (width>1024px){.component-sidebar .sidebar-toggle{display:none}}@media (width>=600px) and (width<=1024px){.component-sidebar{z-index:50;position:absolute;top:0;bottom:0;left:0}}@media (width<600px){.component-sidebar{z-index:50;position:absolute;top:0;bottom:0;left:0}}.component-status-badge{border:1px solid #0000;border-radius:16px;align-items:center;gap:4px;padding:2px 8px;font-size:12px;font-weight:500;line-height:1.5;display:inline-flex}.component-status-badge .status-badge-dot{border-radius:50%;width:8px;height:8px}.component-status-badge.status-badge-not-checked-in{color:var(--danger-dark);background-color:var(--danger-bg);border-color:var(--danger)}.component-status-badge.status-badge-not-checked-in .status-badge-dot{background-color:var(--danger)}.component-status-badge.status-badge-working{color:var(--success-text);background-color:var(--success-bg);border-color:var(--success-dark)}.component-status-badge.status-badge-working .status-badge-dot{background-color:var(--success-dark)}.component-status-badge.status-badge-on-break{color:var(--warning-text);background-color:var(--warning-bg);border-color:var(--warning)}.component-status-badge.status-badge-on-break .status-badge-dot{background-color:var(--warning)}.component-status-badge.status-badge-absent{color:var(--info-text);background-color:var(--info-bg);border-color:var(--info)}.component-status-badge.status-badge-absent .status-badge-dot{background-color:var(--info)}.component-status-badge-skeleton{color:#0000;background-color:var(--neutral-100);border-color:var(--neutral-100)}.component-status-badge-skeleton .status-badge-dot{background-color:var(--neutral-300);animation:1.2s ease-in-out infinite status-badge-skeleton-pulse}.component-status-badge-skeleton .status-badge-skeleton-label{background-color:var(--neutral-300);border-radius:4px;width:64px;height:12px;animation:1.2s ease-in-out infinite status-badge-skeleton-pulse;display:inline-block}@keyframes status-badge-skeleton-pulse{0%,to{opacity:1}50%{opacity:.5}}.component-top-bar{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px;padding:24px;display:flex}.component-top-bar .top-bar-greeting{color:var(--text-primary);letter-spacing:-.28px;margin:0;font-size:28px;font-weight:700;line-height:1.4}.component-top-bar .top-bar-right{border:1px solid var(--neutral-100);background-color:var(--surface);border-radius:16px;align-items:center;gap:24px;padding:16px 24px;display:flex}.component-top-bar .top-bar-datetime{color:var(--text-primary);font-size:14px;font-weight:500;line-height:1.5}.component-top-bar .top-bar-notification{color:var(--text-primary);cursor:pointer;justify-content:center;align-items:center;display:flex;position:relative}.component-top-bar .top-bar-notification-dot{background-color:var(--info);border-radius:50%;width:8px;height:8px;position:absolute;top:0;right:0}.component-main-layout{width:100dvw;height:100dvh;max-height:100dvh;display:flex;position:relative;overflow:hidden}.component-main-layout.main-layout-loading{justify-content:center;align-items:center}.component-main-layout .main-layout-body{flex-direction:column;flex:1;min-width:0;display:flex}.component-main-layout .main-layout-content{background-color:var(--background);flex-direction:column;flex:1;min-height:0;display:flex;overflow:auto}@media (width>=600px) and (width<=1024px){.component-main-layout .main-layout-body{margin-left:64px}}@media (width<600px){.component-main-layout .main-layout-body{margin-left:64px}}.component-date-header{border:1px solid var(--border);background-color:var(--surface);border-radius:16px;justify-content:center;align-items:center;gap:24px;padding:14px;display:inline-flex}.component-date-header.date-header-disabled{opacity:.5;pointer-events:none}.component-date-header .date-header-nav{width:20px;height:20px;color:var(--text-primary);cursor:pointer;background:0 0;border:none;border-radius:8px;justify-content:center;align-items:center;padding:0;transition:background-color .2s;display:inline-flex}.component-date-header .date-header-nav:hover:not(:disabled){background-color:var(--surface-hover)}.component-date-header .date-header-nav:focus-visible{box-shadow:0 0 0 3px var(--brand-primary-opacity-30);outline:none}.component-date-header .date-header-nav:disabled{cursor:not-allowed}.component-date-header .date-header-label{color:var(--text-primary);background:0 0;border:none;align-items:center;gap:2px;padding:0;font-family:inherit;font-size:16px;font-weight:500;line-height:1.5;display:inline-flex}.component-date-header .date-header-label.date-header-label-interactive{cursor:pointer;border-radius:8px;transition:background-color .2s}.component-date-header .date-header-label.date-header-label-interactive:hover:not(:disabled){background-color:var(--surface-hover)}.component-date-header .date-header-label.date-header-label-interactive:focus-visible{box-shadow:0 0 0 3px var(--brand-primary-opacity-30);outline:none}.component-date-header .date-header-label.date-header-label-interactive:disabled{cursor:not-allowed}.component-date-header .date-header-label-text{white-space:nowrap}.component-confirmation-modal{z-index:1000;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.component-confirmation-modal .confirmation-modal-backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background-color:#00060d33;position:absolute;inset:0}.component-confirmation-modal .confirmation-modal-card{background-color:var(--surface);border-radius:24px;flex-direction:column;gap:32px;width:400px;max-width:calc(100vw - 48px);padding:24px;display:flex;position:relative;box-shadow:0 20px 24px -4px #00000014,0 8px 8px -4px #00000008}.component-confirmation-modal .confirmation-modal-content{flex-direction:column;gap:20px;display:flex}.component-confirmation-modal .confirmation-modal-icon{border-style:solid;border-width:8px;border-radius:28px;justify-content:center;align-items:center;width:48px;height:48px;display:flex}.component-confirmation-modal .confirmation-modal-icon-success{color:var(--success-dark);background-color:var(--brand-primary-light);border-color:var(--success-bg)}.component-confirmation-modal .confirmation-modal-icon-danger{background-color:var(--danger-light);border-color:var(--danger-bg)}.component-confirmation-modal .confirmation-modal-text{flex-direction:column;gap:8px;display:flex}.component-confirmation-modal .confirmation-modal-message{color:var(--text-primary);margin:0;font-size:18px;font-weight:600;line-height:1.5}.component-confirmation-modal .confirmation-modal-detail{color:var(--text-secondary);margin:0;font-size:16px;font-weight:400;line-height:1.5}.component-confirmation-modal .confirmation-modal-actions{gap:12px;width:100%;display:flex}.component-confirmation-modal .confirmation-modal-actions .component-button{flex:1}.component-confirmation-modal .confirmation-modal-card-feedback,.component-confirmation-modal .confirmation-modal-card-feedback .confirmation-modal-content{align-items:center}.component-confirmation-modal .confirmation-modal-card-feedback .confirmation-modal-text{text-align:center}.component-confirmation-modal .confirmation-modal-card-feedback .confirmation-modal-message{letter-spacing:-.36px;font-size:36px;font-weight:700;line-height:1.3}.component-confirmation-modal .confirmation-modal-card-feedback .confirmation-modal-detail{font-size:22px}.component-confirmation-modal .confirmation-modal-auto-close{width:100%;color:var(--text-muted);justify-content:space-between;padding:0 24px;font-size:14px;font-weight:400;line-height:1.5;display:flex}.component-load-error{text-align:center;flex-direction:column;align-items:center;gap:12px;padding:48px 24px;display:flex}.component-load-error .load-error-icon{color:var(--danger-dark)}.component-load-error .load-error-title{color:var(--text-primary);font-size:16px;font-weight:500}.component-table{background-color:var(--surface);border-radius:8px;width:100%;overflow-x:auto}.component-table .table-element{border-collapse:collapse;border-spacing:0;width:100%}.component-table .table-header-cell{text-align:left;height:44px;color:var(--text-secondary);background-color:var(--surface);border-bottom:1px solid var(--neutral-100);white-space:nowrap;padding:12px 24px;font-size:12px;font-weight:600;line-height:1.5}.component-table .table-header-cell-sortable{cursor:pointer;-webkit-user-select:none;user-select:none}.component-table .table-header-cell-sortable:hover{color:var(--text-primary)}.component-table .table-header-text{display:inline}.component-table .table-sort-icon{color:var(--neutral-400);vertical-align:middle;align-items:center;margin-left:4px;display:inline-flex}.component-table .table-sort-icon.table-sort-icon-active{color:var(--text-primary)}.component-table .table-filter-icon{color:var(--text-secondary);cursor:pointer;vertical-align:middle;background:0 0;border:none;align-items:center;margin-left:4px;padding:0;display:inline-flex}.component-table .table-filter-icon:hover{color:var(--text-primary)}.component-table .table-row:hover{background-color:var(--surface-hover)}.component-table .table-row-expandable{cursor:pointer}.component-table .table-row-expandable:focus-visible{outline:2px solid var(--brand-primary);outline-offset:-2px}.component-table .table-row-expansion{background-color:var(--surface-hover)}.component-table .table-cell-expansion{border-bottom:1px solid var(--neutral-100);padding:0}.component-table .table-cell{color:var(--neutral-700);border-bottom:1px solid var(--neutral-100);white-space:nowrap;padding:16px 24px;font-size:14px;font-weight:400;line-height:1.5}.component-empty-state{flex-direction:column;justify-content:center;align-items:center;gap:16px;padding:24px 0;display:flex}.component-empty-state .empty-state-icon{border:5px solid var(--success-bg);width:32px;height:32px;color:var(--success-dark);background-color:var(--success-light);border-radius:50%;justify-content:center;align-items:center;display:flex}.component-empty-state .empty-state-title{color:var(--text-primary);margin:0;font-size:18px;font-weight:600}.component-empty-state .empty-state-description{text-align:center;color:var(--text-secondary);white-space:pre-line;margin:0;font-size:16px;line-height:1.5}.component-attendance-control-table{width:100%}.component-attendance-control-table .attendance-control-table-employee{font:inherit;text-align:left;color:var(--brand-primary);cursor:pointer;background:0 0;border:none;padding:0;font-size:14px;font-weight:500}.component-attendance-control-table .attendance-control-table-employee:hover{text-decoration:underline}.component-attendance-control-table .attendance-control-table-employee:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}.component-attendance-control-table .attendance-control-table-hours{align-items:baseline;gap:16px;display:flex}.component-attendance-control-table .attendance-control-table-hours-slot{color:var(--text-primary);font-variant-numeric:tabular-nums;font-size:14px;font-weight:500}.component-attendance-control-table .attendance-control-table-hours-total{color:var(--neutral-600)}.component-attendance-control-table .attendance-control-table-incidence{color:var(--warning-dark);align-items:center;display:inline-flex}.component-attendance-control-table .attendance-control-table-notes{color:var(--neutral-600);font-size:14px}.component-attendance-control-table .attendance-control-table-actions{align-items:center;gap:4px;display:flex}.component-attendance-control-table .attendance-control-table-action{color:var(--text-muted);cursor:pointer;background-color:#0000;border:none;border-radius:8px;justify-content:center;align-items:center;padding:8px;transition:color .15s,background-color .15s;display:inline-flex}.component-attendance-control-table .attendance-control-table-action:hover{color:var(--text-primary);background-color:var(--surface-hover)}.component-attendance-control-table .attendance-control-table-action:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}.component-day-summary-modal{flex-direction:column;gap:24px;display:flex}.component-day-summary-modal .day-summary-modal-rows{flex-direction:column;gap:8px;display:flex}.component-day-summary-modal .day-summary-modal-row{background-color:var(--background-secondary);border-radius:8px;justify-content:space-between;align-items:baseline;padding:8px 16px;display:flex}.component-day-summary-modal .day-summary-modal-row-label{color:var(--text-secondary);font-size:14px;font-weight:500}.component-day-summary-modal .day-summary-modal-row-value{color:var(--text-primary);font-variant-numeric:tabular-nums;font-size:16px;font-weight:600}.component-day-summary-modal .day-summary-modal-actions{flex-direction:column;gap:12px;display:flex}.component-day-summary-modal .day-summary-modal-actions .component-button{width:100%}.admin-edit-attendance-modal-overlay .modal-overlay-card{max-width:480px}.component-admin-edit-attendance-modal{flex-direction:column;gap:24px;display:flex}.component-admin-edit-attendance-modal .admin-edit-attendance-modal-grid{grid-template-columns:repeat(2,1fr);gap:16px;display:grid}.component-admin-edit-attendance-modal .admin-edit-attendance-modal-actions{flex-direction:column;align-items:center;gap:12px;display:flex}.component-admin-edit-attendance-modal .admin-edit-attendance-modal-actions .component-button{width:100%}.component-admin-edit-attendance-modal .admin-edit-attendance-modal-actions .button-link{width:auto}.component-select-field{flex-direction:column;gap:4px;display:flex}.component-select-field .select-field-label{color:var(--text-secondary);font-size:.6875rem}.component-select-field .select-field-input{color:var(--text-primary);cursor:pointer;appearance:none;border:none;border-bottom:1px solid var(--border);background:0 0;padding:6px 0;font-size:.8125rem;font-weight:500}.component-select-field .select-field-input:focus{border-bottom-color:var(--brand-primary);outline:none}.component-select-field .select-field-input:disabled{opacity:.5;cursor:not-allowed}.component-select-field.select-field-disabled{opacity:.5}.admin-add-attendance-modal-overlay .modal-overlay-card{max-width:480px}.component-admin-add-attendance-modal{flex-direction:column;gap:24px;display:flex}.component-admin-add-attendance-modal .admin-add-attendance-modal-field{flex-direction:column;gap:4px;display:flex}.component-admin-add-attendance-modal .admin-add-attendance-modal-field-error{color:var(--danger-dark);font-size:14px}.component-admin-add-attendance-modal .admin-add-attendance-modal-employees-state{color:var(--text-secondary);background-color:var(--background-secondary);border-radius:8px;align-items:center;gap:12px;padding:16px;font-size:14px;display:flex}.component-admin-add-attendance-modal .admin-add-attendance-modal-employees-state-error{color:var(--danger-dark);flex-direction:column;align-items:flex-start}.component-admin-add-attendance-modal .admin-add-attendance-modal-grid{grid-template-columns:repeat(2,1fr);gap:16px;display:grid}.component-admin-add-attendance-modal .admin-add-attendance-modal-actions{flex-direction:column;align-items:center;gap:12px;display:flex}.component-admin-add-attendance-modal .admin-add-attendance-modal-actions .component-button{width:100%}.component-admin-add-attendance-modal .admin-add-attendance-modal-actions .button-link{width:auto}.component-attendance-control-screen{flex-direction:column;gap:24px;padding:24px;display:flex}.component-attendance-control-screen .attendance-control-screen-title{color:var(--text-primary);margin:0;font-size:28px;font-weight:700}.component-attendance-control-screen .attendance-control-screen-toolbar{align-items:center;gap:24px;display:flex}.component-attendance-control-screen .attendance-control-screen-toolbar-left{flex:auto;display:inline-flex}.component-attendance-control-screen .attendance-control-screen-toolbar-actions{align-items:center;gap:16px;display:inline-flex}.component-attendance-control-screen .attendance-control-screen-content{flex-direction:column;min-height:200px;display:flex}.component-attendance-control-screen .attendance-control-screen-loading{justify-content:center;align-items:center;padding:96px 0;display:flex}.component-employee-detail-screen{flex-direction:column;gap:24px;padding:24px;display:flex}.component-employee-detail-screen .employee-detail-screen-title{color:var(--text-primary);margin:0;font-size:28px;font-weight:700}.component-employee-detail-screen .employee-detail-screen-toolbar{align-items:center;gap:24px;display:flex}.component-employee-detail-screen .employee-detail-screen-content{flex-direction:column;min-height:200px;display:flex}.component-employee-detail-screen .employee-detail-screen-loading{justify-content:center;align-items:center;padding:96px 0;display:flex}.component-progress-bar{background-color:var(--neutral-100);border-radius:100px;height:12px;overflow:hidden}.component-progress-bar .progress-bar-fill{background-color:var(--brand-primary);border-radius:100px;height:100%;transition:width .3s}.component-selector-modal{flex-direction:column;gap:16px;display:flex}.component-selector-modal .selector-modal-options{flex-direction:column;gap:4px;display:flex}.component-selector-modal .selector-modal-option{border:1px solid var(--border);cursor:pointer;background-color:var(--neutral-0);border-radius:8px;align-items:center;gap:12px;padding:12px 16px;transition:background-color .15s,border-color .15s;display:flex}.component-selector-modal .selector-modal-option:hover{background-color:var(--background-secondary)}.component-selector-modal .selector-modal-option.selector-modal-option-selected{background-color:var(--success-bg);border-color:var(--success-dark)}.component-selector-modal .selector-modal-radio{border:2px solid var(--border);cursor:pointer;appearance:none;border-radius:50%;width:20px;min-width:20px;height:20px;min-height:20px;position:relative}.component-selector-modal .selector-modal-radio:checked{background-color:var(--brand-primary);border-color:var(--brand-primary)}.component-selector-modal .selector-modal-radio:checked:after{content:"";background-color:#fff;border-radius:50%;width:8px;height:8px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.component-selector-modal .selector-modal-label{color:var(--text-primary);font-size:.875rem}.component-selector-modal .selector-modal-button{width:100%;padding-top:16px;position:sticky;bottom:0}.component-attendance-card{border:1px solid var(--neutral-100);background-color:var(--surface);border-radius:24px;flex-direction:column;gap:16px;padding:24px;display:flex;overflow:hidden}.component-attendance-card .attendance-card-header{justify-content:space-between;align-items:center;display:flex}.component-attendance-card .attendance-card-title{color:var(--text-primary);font-size:16px;font-weight:600}.component-attendance-card .attendance-card-header-action{border:1px solid var(--border);width:32px;height:32px;color:var(--text-secondary);cursor:pointer;background-color:var(--surface);border-radius:10px;justify-content:center;align-items:center;padding:0;display:flex}.component-attendance-card .attendance-card-header-action:hover{background-color:var(--surface-hover)}.component-attendance-card .attendance-card-stat{border:1px solid var(--neutral-100);background-color:var(--background);border-radius:16px;flex-direction:column;gap:16px;padding:24px;display:flex}.component-attendance-card .attendance-card-stat-column{flex-direction:column;display:flex}.component-attendance-card .attendance-card-stat-label{color:var(--text-secondary);font-size:16px;line-height:1.5}.component-attendance-card .attendance-card-stat-value{color:var(--text-primary);letter-spacing:-.28px;font-size:28px;font-weight:700;line-height:1.4}.component-attendance-card .attendance-card-selectors{flex-direction:column;display:flex}.component-attendance-card .attendance-card-field{cursor:pointer;border:none;border-bottom:1px solid var(--neutral-100);background:0 0;justify-content:space-between;align-items:center;padding:8px 0;display:flex}.component-attendance-card .attendance-card-field:disabled{opacity:.5;cursor:not-allowed}.component-attendance-card .attendance-card-field-text{flex-direction:column;align-items:flex-start;line-height:1.5;display:flex}.component-attendance-card .attendance-card-field-label{color:var(--text-secondary);letter-spacing:.12px;font-size:12px;font-weight:400}.component-attendance-card .attendance-card-field-value{color:var(--text-primary);font-size:14px;font-weight:600}.component-attendance-card .attendance-card-field-value-skeleton{background-color:var(--neutral-100);border-radius:4px;width:140px;height:21px;animation:1.2s ease-in-out infinite attendance-card-skeleton-pulse;display:block}.component-attendance-card .attendance-card-field-chevron{width:32px;height:32px;color:var(--text-secondary);justify-content:center;align-items:center;display:flex}.component-attendance-card .attendance-card-actions{flex-direction:column;gap:16px;display:flex}@keyframes attendance-card-skeleton-pulse{0%,to{opacity:1}50%{opacity:.5}}.component-dashboard-card{border:1px solid var(--neutral-50);background-color:var(--surface);border-radius:24px;flex-direction:column;gap:16px;padding:24px;display:flex;box-shadow:0 1px 2px #0000000d}.component-dashboard-card .dashboard-card-header{justify-content:space-between;align-items:center;display:flex}.component-dashboard-card .dashboard-card-header-left{align-items:center;gap:8px;display:flex}.component-dashboard-card .dashboard-card-title{color:var(--text-primary);margin:0;font-size:16px;font-weight:600}.component-dashboard-card .dashboard-card-action{border:1px solid var(--border);width:32px;height:32px;color:var(--text-secondary);cursor:pointer;background-color:var(--surface);border-radius:10px;justify-content:center;align-items:center;padding:0;display:flex}.component-dashboard-card .dashboard-card-action:hover{background-color:var(--surface-hover)}.component-monthly-summary{grid-template-columns:repeat(auto-fit,minmax(min(140px,100%),1fr));gap:16px;display:grid}.component-monthly-summary .monthly-summary-stat{border:1px solid var(--neutral-50);background-color:var(--background);border-radius:16px;flex-direction:column;gap:4px;padding:16px;display:flex}.component-monthly-summary .monthly-summary-stat-label{color:var(--text-secondary);font-size:12px;font-weight:500}.component-monthly-summary .monthly-summary-stat-value-row{align-items:baseline;gap:4px;display:flex}.component-monthly-summary .monthly-summary-stat-value{color:var(--text-primary);letter-spacing:-.22px;font-size:22px;font-weight:700}.component-monthly-summary .monthly-summary-stat-suffix{color:var(--text-muted);font-size:12px;font-weight:500}.component-monthly-summary-loading{justify-content:center;align-items:center;padding:24px;display:flex}.component-monthly-summary-empty{color:var(--text-muted);justify-content:center;align-items:center;padding:24px;font-size:14px;display:flex}.component-team-status{flex-direction:column;display:flex}.component-team-status .team-status-row{justify-content:space-between;align-items:center;padding:12px 0;display:flex}.component-team-status .team-status-row:not(:last-child){border-bottom:1px solid var(--border)}.component-team-status .team-status-info{align-items:center;gap:8px;display:flex}.component-team-status .team-status-icon{width:40px;height:40px;color:var(--text-secondary);background-color:var(--background-secondary);border-radius:8px;justify-content:center;align-items:center;display:flex}.component-team-status .team-status-icon-blue{border:1px solid var(--info-light);color:var(--info);background-color:var(--info-bg)}.component-team-status .team-status-icon-yellow{border:1px solid var(--warning-light);color:var(--warning);background-color:var(--warning-bg)}.component-team-status .team-status-icon-gray{border:1px solid var(--border)}.component-team-status .team-status-text{flex-direction:column;display:flex}.component-team-status .team-status-label{color:var(--text-primary);font-size:14px;font-weight:500}.component-team-status .team-status-count{color:var(--text-muted);font-size:12px}.component-team-status .team-status-avatars{display:flex}.component-team-status .team-status-avatar{border:2px solid var(--surface);width:32px;height:32px;color:var(--text-secondary);background-color:var(--background-secondary);object-fit:cover;border-radius:50%;margin-left:-8px;font-size:12px;font-weight:500}.component-team-status .team-status-avatar:first-child{margin-left:0}.component-team-status .team-status-avatar-initials{justify-content:center;align-items:center;display:flex}.component-team-status .team-status-avatar-extra{color:var(--text-secondary);background-color:var(--neutral-100);justify-content:center;align-items:center;font-size:12px;font-weight:600;display:flex}.component-quick-actions{flex-direction:column;gap:16px;display:flex}.component-quick-actions .component-button{width:100%}.component-card{border:1px solid;border-radius:16px;flex-direction:column;gap:8px;padding:16px;display:flex}.component-card.card-approved{background:linear-gradient(90deg, #e6fcf24d 0%, #e6fcf24d 100%), var(--surface);border-color:var(--brand-primary-light)}.component-card.card-pending{background:linear-gradient(90deg, #fffaeb4d 0%, #fffaeb4d 100%), var(--surface);border-color:var(--warning-light)}.component-card.card-rejected{background:linear-gradient(90deg, #ffeced4d 0%, #ffeced4d 100%), var(--surface);border-color:var(--danger-light)}.component-card.card-expired{background-color:var(--surface);border-color:var(--border)}.component-card.card-info{background:linear-gradient(90deg, #e5f1ff4d 0%, #e5f1ff4d 100%), var(--surface);border-color:var(--info-light)}.component-card .card-header{border-bottom:1px solid;border-color:inherit;justify-content:space-between;align-items:center;padding-bottom:16px;display:flex}.component-card .card-header-left{align-items:center;gap:8px;display:flex}.component-card .card-icon{flex-shrink:0;justify-content:center;align-items:center;display:flex}.component-card .card-title{color:var(--neutral-700);white-space:nowrap;font-size:16px;font-weight:600;line-height:1.5}.component-card .card-header-right{align-items:center;gap:8px;display:flex}.component-card .card-menu{color:var(--text-secondary);cursor:pointer;background-color:#0000;border:none;flex-shrink:0;justify-content:center;align-items:center;padding:0;display:flex}.component-card .card-menu:hover{color:var(--text-primary)}.component-card .card-details{flex-direction:column;gap:8px;display:flex}.component-card .card-detail-row{color:var(--neutral-700);white-space:nowrap;justify-content:space-between;align-items:center;font-size:14px;line-height:1.5;display:flex}.component-card .card-detail-label{font-weight:400}.component-card .card-detail-value{font-weight:600}.component-card .card-categories{color:var(--neutral-700);white-space:nowrap;gap:8px;font-size:14px;font-weight:400;line-height:1.5;display:flex}.component-recent-requests{flex-direction:column;gap:16px;display:flex;overflow:hidden}.component-recent-requests-loading{justify-content:center;align-items:center;padding:24px;display:flex}.component-recent-requests-empty{color:var(--text-muted);justify-content:center;align-items:center;padding:24px;font-size:14px;display:flex}.component-agenda{flex-direction:column;gap:16px;max-height:239px;display:flex;overflow-y:auto}.component-agenda .agenda-event{border-left:4px solid #0000;border-radius:8px;justify-content:space-between;align-items:center;padding:8px 8px 8px 12px;display:flex}.component-agenda .agenda-event-green{border-left-color:var(--success-dark);background-color:#e6fcf280}.component-agenda .agenda-event-blue{border-left-color:var(--info);background-color:#e5f1ff80}.component-agenda .agenda-event-red{border-left-color:var(--danger);background-color:#ffeced80}.component-agenda .agenda-event-info{align-items:center;gap:8px;display:flex}.component-agenda .agenda-event-icon{width:40px;height:40px;color:var(--text-secondary);border-radius:8px;justify-content:center;align-items:center;display:flex}.component-agenda .agenda-event-text{flex-direction:column;line-height:1.5;display:flex}.component-agenda .agenda-event-title{color:var(--text-primary);font-size:16px;font-weight:600}.component-agenda .agenda-event-subtitle{color:var(--text-secondary);font-size:14px}.component-agenda .agenda-event-dates{align-items:center;gap:4px;display:flex}.component-agenda .agenda-date-pill{text-align:center;background-color:var(--surface);border:1px solid #0000;border-radius:8px;flex-direction:column;align-items:center;width:55px;padding:8px 12px;line-height:1.5;display:flex}.component-agenda .agenda-date-pill-green{border-color:var(--success-light)}.component-agenda .agenda-date-pill-green .agenda-date-pill-day{color:var(--success-dark)}.component-agenda .agenda-date-pill-blue{border-color:var(--info-light)}.component-agenda .agenda-date-pill-blue .agenda-date-pill-day{color:var(--info)}.component-agenda .agenda-date-pill-red{border-color:var(--danger-light)}.component-agenda .agenda-date-pill-red .agenda-date-pill-day{color:var(--danger)}.component-agenda .agenda-date-pill-month{color:var(--text-primary);font-size:12px;font-weight:600}.component-agenda .agenda-date-pill-day{font-size:16px;font-weight:700}.component-agenda .agenda-date-arrow{color:var(--text-muted)}.component-agenda-loading{justify-content:center;align-items:center;padding:24px;display:flex}.component-agenda-empty{color:var(--text-muted);justify-content:center;align-items:center;padding:24px;font-size:14px;display:flex}.component-avatar{width:32px;height:32px;color:var(--text-secondary);background-color:var(--background-secondary);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;font-size:12px;font-weight:500;display:flex;overflow:hidden}.component-avatar img{object-fit:cover;width:100%;height:100%}.component-dropdown-menu{z-index:100;border:1px solid var(--border);background-color:var(--surface);border-radius:8px;flex-direction:column;min-width:160px;padding:0 16px;display:flex;position:absolute;overflow:hidden;box-shadow:0 12px 16px -4px #00000014,0 4px 6px -2px #00000008}.component-dropdown-menu .dropdown-menu-item{color:var(--text-secondary);cursor:pointer;background:0 0;border:none;justify-content:space-between;align-items:center;padding:8px 0;font-family:inherit;font-size:16px;font-weight:500;display:flex}.component-dropdown-menu .dropdown-menu-item:not(:last-child){border-bottom:1px solid var(--border)}.component-dropdown-menu .dropdown-menu-item:hover{color:var(--text-primary)}.component-dropdown-menu .dropdown-menu-item .dropdown-menu-item-label{text-align:left;text-overflow:ellipsis;white-space:nowrap;flex:1;overflow:hidden}.component-dropdown-menu .dropdown-menu-item .dropdown-menu-item-icon{flex-shrink:0;align-items:center;display:flex}.component-review-request-modal{flex-direction:column;gap:32px;display:flex}.component-review-request-modal .review-request-modal-details{flex-direction:column;gap:8px;padding:0 16px;display:flex}.component-review-request-modal .review-request-modal-row{color:var(--text-primary);justify-content:space-between;align-items:center;font-size:14px;line-height:1.5;display:flex}.component-review-request-modal .review-request-modal-label{font-weight:400}.component-review-request-modal .review-request-modal-value{font-weight:600}.component-review-request-modal .review-request-modal-actions{flex-direction:column;gap:12px;display:flex}.component-review-request-modal .review-request-modal-actions .component-button{width:100%}.component-textarea{flex-direction:column;gap:6px;width:100%;display:flex}.textarea-label{color:var(--text-secondary);font-size:14px;font-weight:500;line-height:1.5}.textarea-input{border:1px solid var(--border);box-sizing:border-box;width:100%;color:var(--text-primary);background-color:var(--surface);resize:vertical;border-radius:8px;outline:none;padding:10px 14px;font-family:inherit;font-size:16px;font-weight:400;line-height:1.5;transition:border-color .2s,box-shadow .2s}.textarea-input::placeholder{color:var(--text-muted)}.textarea-input:focus{box-shadow:0 0 0 4px var(--brand-primary-light);border-color:var(--success-dark)}.textarea-input:disabled{color:var(--text-muted);cursor:not-allowed;resize:none;background-color:#fafafa}.textarea-hint{color:var(--text-secondary);font-size:14px;font-weight:400;line-height:1.5}.textarea-error{color:var(--danger-dark);font-size:14px;font-weight:400;line-height:1.5}.textarea-has-error .textarea-input{border-color:var(--danger-light)}.textarea-has-error .textarea-input:focus{border-color:var(--danger-light);box-shadow:0 0 0 4px #fee4e2}.textarea-disabled .textarea-label{color:var(--text-muted)}.component-reject-request-modal-overlay .modal-overlay-header{position:relative}.component-reject-request-modal{flex-direction:column;gap:32px;display:flex}.component-reject-request-modal .reject-request-modal-back{color:var(--text-muted);cursor:pointer;background:0 0;border:none;align-items:center;padding:0;display:flex;position:absolute;top:24px;left:24px}.component-reject-request-modal .reject-request-modal-back:hover{color:var(--text-primary)}.component-reject-request-modal .reject-request-modal-actions{flex-direction:column;align-items:center;gap:12px;display:flex}.component-reject-request-modal .reject-request-modal-actions .component-button{width:100%}.component-reject-request-modal .reject-request-modal-actions .button-link{width:auto}.component-team-requests{max-height:400px;overflow-y:auto}.component-team-requests .team-requests-table{border-radius:0;overflow-x:visible}.component-team-requests .team-requests-person{align-items:center;gap:12px;display:flex}.component-team-requests .team-requests-name{color:var(--text-primary);white-space:nowrap;font-size:14px;font-weight:500}.component-team-requests .team-requests-menu-wrapper{position:relative}.component-team-requests .team-requests-menu-wrapper .component-dropdown-menu{top:100%;right:0}.component-team-requests .team-requests-menu{width:32px;height:32px;color:var(--text-muted);cursor:pointer;background:0 0;border:none;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;padding:0;display:flex}.component-team-requests .team-requests-menu:hover{background-color:var(--surface-hover)}.component-team-requests .team-requests-menu-icon-success{color:var(--success)}.component-team-requests .team-requests-menu-icon-danger{color:var(--danger)}.component-team-requests-loading{justify-content:center;align-items:center;padding:48px 0;display:flex}.component-pending-regularizations{max-height:400px;overflow-y:auto}.component-pending-regularizations .pending-regularizations-table{border-radius:0;overflow-x:visible}.component-pending-regularizations .pending-regularizations-person{align-items:center;gap:12px;display:flex}.component-pending-regularizations .pending-regularizations-name{color:var(--text-primary);white-space:nowrap;font-size:14px;font-weight:500}.component-pending-regularizations .pending-regularizations-menu-wrapper{position:relative}.component-pending-regularizations .pending-regularizations-menu-wrapper .component-dropdown-menu{top:100%;right:0}.component-pending-regularizations .pending-regularizations-menu{width:32px;height:32px;color:var(--text-muted);cursor:pointer;background:0 0;border:none;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;padding:0;display:flex}.component-pending-regularizations .pending-regularizations-menu:hover{background-color:var(--surface-hover)}.component-pending-regularizations .pending-regularizations-menu-icon-success{color:var(--success)}.component-pending-regularizations .pending-regularizations-menu-icon-danger{color:var(--danger)}.component-pending-regularizations-loading{justify-content:center;align-items:center;padding:48px 0;display:flex}.component-dashboard-screen{padding:24px;overflow:auto}.component-dashboard-screen .dashboard-screen-layout{flex-wrap:wrap;gap:24px;display:flex}.component-dashboard-screen .dashboard-screen-layout-left{flex-direction:column;flex-shrink:0;gap:24px;width:355px;display:flex}.component-dashboard-screen .dashboard-screen-layout-right{flex-direction:column;flex:1;gap:24px;min-width:0;display:flex}.component-dashboard-screen .dashboard-screen-layout-right-middle{grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr));gap:24px;display:grid}.component-dashboard-screen .dashboard-screen-layout-bottom{grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr));gap:24px;width:100%;display:grid}@media (width>=600px) and (width<=1024px){.component-dashboard-screen .dashboard-screen-layout-left{width:100%}}@media (width<600px){.component-dashboard-screen .dashboard-screen-layout-left{width:100%}}.component-dashboard-screen-loading{flex:1;justify-content:center;align-items:center;display:flex}.component-tabs{align-items:stretch;width:100%;display:flex}.component-tabs .tabs-item{color:var(--text-muted);cursor:pointer;border:none;border-bottom:1px solid var(--border);white-space:nowrap;background-color:#0000;border-radius:4px 4px 0 0;outline:none;justify-content:center;align-items:center;padding:4px 16px;font-family:inherit;font-size:16px;font-weight:400;line-height:1.5;transition:background-color .15s,border-color .15s,color .15s;display:flex}.component-tabs .tabs-item:hover{background-color:var(--neutral-100)}.component-tabs .tabs-item:focus-visible{box-shadow:inset 0 0 0 2px var(--brand-primary-opacity-30)}.component-tabs .tabs-item-active{color:var(--neutral-700);border-bottom:2px solid var(--brand-primary);font-weight:600}.component-tabs .tabs-item-active:hover{background-color:var(--neutral-100)}.add-attendance-modal-overlay .modal-overlay-card{max-width:542px}.component-add-attendance-modal{flex-direction:column;gap:24px;display:flex}.component-add-attendance-modal .add-attendance-modal-grid{grid-template-columns:repeat(2,1fr);gap:16px;display:grid}.component-add-attendance-modal .add-attendance-modal-field-full{grid-column:1/-1}.component-add-attendance-modal .add-attendance-modal-actions{flex-direction:column;align-items:center;gap:12px;display:flex}.component-add-attendance-modal .add-attendance-modal-actions .component-button{width:100%}.component-add-attendance-modal .add-attendance-modal-actions .button-link{width:auto}.component-my-attendance-table .my-attendance-table-date{color:var(--text-primary);align-items:center;gap:12px;font-weight:500;display:inline-flex}.component-my-attendance-table .my-attendance-table-date-caret{color:var(--text-secondary);flex-shrink:0;transition:transform .2s}.component-my-attendance-table .my-attendance-table-date-info{color:var(--danger-dark);flex-shrink:0}.component-my-attendance-table .table-row-expanded .my-attendance-table-date-caret{transform:rotate(180deg)}.component-my-attendance-table .my-attendance-table-hours{align-items:center;gap:16px;display:flex}.component-my-attendance-table .my-attendance-table-hours-text{color:var(--text-primary);font-variant-numeric:tabular-nums;white-space:nowrap}.component-my-attendance-table .my-attendance-table-hours-progress{flex:1 1 0;align-items:center;min-width:120px;max-width:160px;display:flex;position:relative}.component-my-attendance-table .my-attendance-table-hours-progress-bar{flex:1 1 0;height:8px}.component-my-attendance-table .my-attendance-table-hours-progress-bar .progress-bar-fill{background-color:var(--success)}.component-my-attendance-table .my-attendance-table-shift,.component-my-attendance-table .my-attendance-table-absence-reason{color:var(--text-primary)}.component-my-attendance-table .my-attendance-table-entries{flex-direction:column;display:flex}.component-my-attendance-table .my-attendance-table-entry{border-bottom:1px solid var(--neutral-100);grid-template-columns:24px 80px 100px 1fr 1fr 80px;align-items:center;gap:24px;padding:12px 24px;font-size:14px;display:grid}.component-my-attendance-table .my-attendance-table-entry:last-child{border-bottom:none}.component-my-attendance-table .my-attendance-table-entry-icon{flex-shrink:0;justify-content:center;align-items:center;width:18px;height:18px;display:inline-flex}.component-my-attendance-table .my-attendance-table-entry-in .my-attendance-table-entry-icon,.component-my-attendance-table .my-attendance-table-entry-out .my-attendance-table-entry-icon,.component-my-attendance-table .my-attendance-table-entry-pause .my-attendance-table-entry-icon{color:var(--success-dark)}.component-my-attendance-table .my-attendance-table-entry-label{color:var(--text-primary);font-weight:400}.component-my-attendance-table .my-attendance-table-entry-time{color:var(--text-primary);font-variant-numeric:tabular-nums}.component-my-attendance-table .my-attendance-table-entry-site,.component-my-attendance-table .my-attendance-table-entry-reason{color:var(--text-secondary)}.component-my-attendance-table .my-attendance-table-entry-actions{justify-content:flex-end;gap:8px;display:inline-flex}.component-my-attendance-table .my-attendance-table-entry-action{color:var(--text-secondary);cursor:pointer;background:0 0;border:none;justify-content:center;align-items:center;padding:4px;display:inline-flex}.component-my-attendance-table .my-attendance-table-entry-action:hover{color:var(--text-primary)}.component-my-attendance-table .my-attendance-table-entry-action:disabled{color:var(--neutral-300);cursor:not-allowed}.component-my-regularizations-table{width:100%}.component-my-regularizations-table .my-regularizations-table-date,.component-my-regularizations-table .my-regularizations-table-type,.component-my-regularizations-table .my-regularizations-table-original,.component-my-regularizations-table .my-regularizations-table-proposal{color:var(--text-primary);font-size:14px;font-weight:500}.component-my-regularizations-table .my-regularizations-table-actions{align-items:center;gap:4px;display:flex}.component-my-regularizations-table .my-regularizations-table-action{color:var(--text-muted);cursor:pointer;background-color:#0000;border:none;border-radius:8px;justify-content:center;align-items:center;padding:8px;transition:color .15s,background-color .15s;display:inline-flex}.component-my-regularizations-table .my-regularizations-table-action:hover{color:var(--text-primary);background-color:var(--surface-hover)}.component-my-regularizations-table .my-regularizations-table-action:focus-visible{outline:2px solid var(--brand-primary);outline-offset:2px}.component-my-attendance-screen{flex-direction:column;flex:1;gap:24px;min-height:0;padding:24px;display:flex}.component-my-attendance-screen .my-attendance-screen-toolbar{grid-template-columns:1fr auto 1fr;align-items:center;gap:24px;display:grid}.component-my-attendance-screen .my-attendance-screen-summary{flex-direction:column;gap:4px;min-width:0;display:flex}.component-my-attendance-screen .my-attendance-screen-summary-title{color:var(--text-primary);font-size:16px;font-weight:500}.component-my-attendance-screen .my-attendance-screen-summary-value{align-items:baseline;gap:4px;display:inline-flex}.component-my-attendance-screen .my-attendance-screen-summary-value-main{color:var(--text-primary);font-variant-numeric:tabular-nums;font-size:32px;font-weight:500;line-height:1.2}.component-my-attendance-screen .my-attendance-screen-summary-value-suffix{color:var(--neutral-600);font-size:14px}.component-my-attendance-screen .my-attendance-screen-content{flex-direction:column;flex:1;min-height:0;display:flex}.component-my-attendance-screen .my-attendance-screen-loading{flex:1;justify-content:center;align-items:center;display:flex}.component-my-attendance-screen .my-attendance-screen-toolbar-actions{justify-content:flex-end;align-items:center;gap:16px;display:inline-flex}:root,[data-theme=light]{--brand-primary:#0ae883;--brand-primary-light:#cefae6;--brand-primary-dark:#08b968;--brand-primary-darker:#045c34;--brand-secondary:#007bff;--brand-accent:#ec6f27;--danger:#ff4950;--danger-light:#ffdadc;--danger-dark:#c7383e;--success:#0ae883;--success-light:#cefae6;--success-dark:#08b968;--warning:#ec6f27;--warning-light:#ffedba;--warning-dark:#b54708;--info:#007bff;--info-light:#cce4ff;--info-dark:#0062cc;--neutral-0:#fff;--neutral-50:#fbfbfb;--neutral-100:#f2f2f2;--neutral-200:#d8d9da;--neutral-300:#b2b4b6;--neutral-400:#7f8286;--neutral-500:#4c5055;--neutral-600:#343330;--neutral-700:#191e25;--neutral-800:#191e25;--neutral-900:#00060d;--neutral-1000:#00060d;--background:#fbfbfb;--background-secondary:#f2f2f2;--surface:#fff;--surface-hover:#f2f2f2;--text-primary:#00060d;--text-secondary:#4c5055;--text-muted:#7f8286;--border:#d8d9da;--border-hover:#b2b4b6;--shadow:#0000001a;--success-bg:#e6fcf2;--success-text:#034527;--danger-bg:#ffeced;--danger-text:#c7383e;--warning-bg:#fffaeb;--warning-text:#b54708;--info-bg:#e5f1ff;--info-text:#003166;--danger-opacity-30:#ff49504d;--brand-primary-opacity-30:#0ae8834d}[data-theme=dark]{--brand-primary:#0ae883;--brand-primary-light:#08b968;--brand-primary-dark:#cefae6;--brand-primary-darker:#e6fcf2;--brand-secondary:#cce4ff;--brand-accent:#ffedba;--danger:#ff4950;--danger-light:#ffdadc;--danger-dark:#c7383e;--success:#0ae883;--success-light:#cefae6;--success-dark:#08b968;--warning:#ffedba;--warning-light:#fffaeb;--warning-dark:#ec6f27;--info:#cce4ff;--info-light:#e5f1ff;--info-dark:#007bff;--neutral-0:#00060d;--neutral-50:#00060d;--neutral-100:#191e25;--neutral-200:#343330;--neutral-300:#4c5055;--neutral-400:#7f8286;--neutral-500:#b2b4b6;--neutral-600:#d8d9da;--neutral-700:#f2f2f2;--neutral-800:#f2f2f2;--neutral-900:#fbfbfb;--neutral-1000:#fff;--background:#00060d;--background-secondary:#191e25;--surface:#191e25;--surface-hover:#343330;--text-primary:#f2f2f2;--text-secondary:#d8d9da;--text-muted:#7f8286;--border:#343330;--border-hover:#4c5055;--shadow:#0006;--success-bg:#045c34;--success-text:#e6fcf2;--danger-bg:#c7383e;--danger-text:#ffeced;--warning-bg:#b54708;--warning-text:#fffaeb;--info-bg:#003166;--info-text:#e5f1ff;--danger-opacity-30:#ff49504d;--brand-primary-opacity-30:#0ae8834d}@font-face{font-weight:300 800;font-display:swap;font-family:Figtree;font-style:normal;src:url(/assets/Figtree-latin-ext-DCwSJGxG.woff2)format("woff2");unicode-range:U+100-2BA,U+2BD-2C5,U+2C7-2CC,U+2CE-2D7,U+2DD-2FF,U+304,U+308,U+329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-weight:300 800;font-display:swap;font-family:Figtree;font-style:normal;src:url(/assets/Figtree-latin-D_ZTVpCC.woff2)format("woff2");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}*,:before,:after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0;margin-block:0;margin-inline:0}ul[role=list],ol[role=list]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-width:100vw;min-height:100dvh;color:var(--text-primary);background-color:var(--background);text-rendering:optimizespeed;font-family:Figtree,system-ui,-apple-system,blinkmacsystemfont,Segoe UI,roboto,sans-serif}a:not([class]){-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit;margin:0;padding:0}@media (prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,:before,:after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}#root{width:100dvw;height:100dvh;color:var(--text-primary);background:var(--background);margin:0 auto;font-size:16px}
