.field-pdf_link label {
    display: none !important;
}
.form-row.field-pdf_link label {
    display: none !important;
}
.field-pdf_link {
    grid-template-columns: 1fr !important;
}
.field-csv_link label {
    display: none !important;
}
.form-row.field-csv_link label {
    display: none !important;
}
.field-csv_link {
    grid-template-columns: 1fr !important;
}
/* ============================================
   GLOBAL
============================================ */
html,
body {
    background: #ffffff !important;
    color: #111827 !important;
}

/* horní červený pruh */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: #c4001a;
    z-index: 9999;
}

/* spodní červený pruh */
body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: #c4001a;
    z-index: 9999;
}

/* main content */
#content,
main,
.content,
.unfold-content {
    background: #ffffff !important;
}

/* ============================================
   HEADER
============================================ */
header,
.unfold-header,
#header {
    background: #d32f2f !important;
    border-bottom: none !important;
    color: white !important;
}

header *,
.unfold-header * {
    color: white !important;
}

/* top right links/icons */
header a,
.unfold-header a {
    color: white !important;
}

/* ============================================
   FOOTER
============================================ */
footer,
.unfold-footer {
    background: #d32f2f !important;
    color: white !important;
    border-top: none !important;
}

footer *,
.unfold-footer * {
    color: white !important;
}

/* ============================================
   SIDEBAR
============================================ */
aside,
.sidebar,
.unfold-sidebar {
    background: #fafafa !important;
    border-right: 1px solid #e5e7eb !important;
}

/* menu items */
aside a,
.unfold-sidebar a {
    color: #374151 !important;
}

/* active menu */
aside a:hover,
.unfold-sidebar a:hover {
    background: #fee2e2 !important;
    color: #d32f2f !important;
}

/* ============================================
   CARDS / PANELS
============================================ */
.card,
.module,
.dashboard-module,
.rounded-md {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: none !important;
}

/* ============================================
   BUTTONS
============================================ */
button,
.btn,
.button,
input[type="submit"] {
    background: #d32f2f !important;
    border-color: #d32f2f !important;
    color: white !important;
}

button:hover,
.btn:hover,
.button:hover,
input[type="submit"]:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
}

/* unfold primary buttons */
.bg-primary-500,
.bg-primary-600,
.bg-primary-700 {
    background: #d32f2f !important;
}

.hover\:bg-primary-500:hover,
.hover\:bg-primary-600:hover,
.hover\:bg-primary-700:hover {
    background: #b71c1c !important;
}

/* ============================================
   LINKS / ICONS
============================================ */
a {
    color: #d32f2f !important;
}

svg,
i {
    color: #d32f2f !important;
}

/* ============================================
   TABLES
============================================ */
table {
    background: white !important;
}

thead {
    background: #f9fafb !important;
}

tbody tr:hover {
    background: #fef2f2 !important;
}

body.login h1,
body.login h2,
body.login .text-primary-600,
body.login .text-primary-500 {
    color: #c4001a !important;
}

/* Loading page */
.loading-page {
    margin: 0;
    background: #f8fafc;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #1e293b;
}

.loading-card {
    width: 420px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.loading-top-bar,
.loading-bottom-bar {
    height: 8px;
    background: #c1121f;
}

.loading-content {
    padding: 40px;
    text-align: center;
}

.loading-content h2 {
    margin-top: 0;
    color: #c1121f;
}

.loading-content p {
    color: #475569;
    margin-bottom: 25px;
}

.loading-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #c1121f;
    border-radius: 50%;
    animation: loading-spin 0.8s linear infinite;
    margin: auto;
}

@keyframes loading-spin {
    100% {
        transform: rotate(360deg);
    }
}