/* Template-specific styles for THS */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8F8F8;
}

::-webkit-scrollbar-thumb {
    background: #E30613;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C5050F;
}

/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Print styles */
@media print {
    .header,
    .footer {
        background-color: #000000 !important;
        color: #FFFFFF !important;
    }
    
    .main-page {
        background-color: #FFFFFF !important;
    }
    
    .action-button {
        background-color: #000000 !important;
        color: #FFFFFF !important;
        border: 1px solid #000000 !important;
    }
}

