﻿* {
    box-sizing: border-box;
}

html,body{
    height: 100dvh;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

label {
    font-weight: 500;
}

.btn {
    transition: all 0.15s ease-in-out;
    font-weight: 500;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

    .card:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

.table {
    margin-bottom: 1rem;
}

    .table th {
        font-weight: 600;
        color: #495057;
        border-bottom: 2px solid #dee2e6;
    }

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.text-shadow-sm {
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-hover {
    transition: box-shadow 0.2s ease;
}

    .shadow-hover:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

.input-group .form-control:focus {
    border-color: #86b7fe;
    z-index: 3;
}

a {
    transition: color 0.15s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

@media print {
    .no-print {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }
}

/*@media (prefers-color-scheme: dark) {
    body {
        background-color: #212529;
        color: #f8f9fa;
    }
}
*/