/* Animation Areas */
.animation-area {
    height: 150px;
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: hidden;
}

.animation-area-sampling {
    height: 150px;
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: visible;
}

/* Human Icon Animation */
.human-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.1s linear;
    font-size: 2rem;
}

/* Door Icon */
.door-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

/* Clock Animation */
.clock-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sampling Table */
.sampling-table {
    width: 60px;
    height: 30px;
    background: #6c757d;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Custom Button Colors */
.btn-orange {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
}

.btn-orange:hover {
    background-color: #e96b00;
    border-color: #e96b00;
    color: white;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Progress Bar Custom */
.progress-custom {
    height: 8px;
    border-radius: 10px;
}

/* Data Table Scrolling */
.data-table-container {
    max-height: 400px;
    overflow-y: auto;
}

/* Badge Custom Colors */
.badge-orange {
    background-color: #fd7e14;
    color: white;
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}
