/*styles.css*/
body {
    font-family: 'Inter', sans-serif;
}
.badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
}
.modal {
    transition: opacity 0.2s ease-in-out;
}
.modal-content {
    transition: transform 0.2s ease-in-out;
}
.task-pane {
    scrollbar-width: thin;
}
.task-pane::-webkit-scrollbar {
    width: 6px;
}
.task-pane::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 4px;
}
.id-card {
    background: linear-gradient(to right, #f8fafc 50%, #e2e8f0 50%);
    background-size: 100% 30px;
}
.scanning-pulse {
    animation: pulse 1.2s infinite ease-in-out;
}
@keyframes pulse {
    0% {
        opacity: 0.9;
        transform: scale(1);
        box-shadow: 0 0 0px rgba(0, 204, 255, 0.4);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.15);
        box-shadow: 0 0 15px rgba(0, 204, 255, 0.8);
    }
    100% {
        opacity: 0.9;
        transform: scale(1);
        box-shadow: 0 0 0px rgba(0, 204, 255, 0.4);
    }
}
.loading-spinner {
    animation: spin 1s linear infinite40}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.container-grid {
    min-width: 1000px;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}
.left-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    padding: 1rem;
    overflow-y: auto;
    z-index: 40;
}
.right-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    min-width: 480px;
    max-width: 480px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    padding: 1rem;
    overflow-y: auto;
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
}
.right-sidebar.active {
    transform: translateX(0);
}
.center-content {
    grid-column: 2;
    padding: 1rem;
    transform: scale(0.8);
    transform-origin: center top;
    z-index: 50;
    position: relative;
}
#today-date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#today-date span {
    width: 100%;
    text-align: center;
}
#status-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    z-index: 1000 !important;
    display: block !important;
    visibility: visible !important;
    transition: right 0.5s ease-in-out;
}
#status-panel.status-panel-active {
    right: 0;
}