/**
 * Bemmel & Kroon Werkplanning - Custom Styles
 * Author: Stijn Heemskerk
 * For: Bemmel & Kroon
 * Mobile-First Responsive Design
 */

/* CSS Variables for Bemmel & Kroon colors */
:root {
    --bk-primary-red: #D71920;
    --bk-hover-red: #B51219;
    --bk-secondary-yellow: #FFD200;
    --bk-text-dark: #333333;
    --bk-text-light: #666666;
    --bk-text-muted: #999999;
    --bk-background-light: #F8F9FA;
    --bk-border: #DEE2E6;
    --bk-white: #FFFFFF;
    --bk-light-red-bg: #FDE6E7;
    --bk-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --bk-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --bk-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bk-text-dark);
    background-color: var(--bk-background-light);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--bk-text-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Header & Navbar Styles */
.header-bk {
    background-color: var(--bk-primary-red);
    color: var(--bk-white);
    box-shadow: var(--bk-shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-bk .container-fluid {
    padding: 0 1.5rem;
}

.header-bk .navbar {
    padding: 0.75rem 0;
}

.header-bk .navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bk-white) !important;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-bk .navbar-brand img {
    height: 40px;
    width: auto;
}

.header-bk .navbar-nav {
    gap: 0.25rem;
}

.header-bk .navbar-nav .nav-link {
    color: var(--bk-white) !important;
    padding: 0.625rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-bk .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.header-bk .navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.header-bk .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
}

.header-bk .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
}

.header-bk .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-bk .dropdown-menu {
    border: none;
    box-shadow: var(--bk-shadow-md);
    border-radius: 6px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.header-bk .dropdown-item {
    padding: 0.625rem 1.25rem;
    color: var(--bk-text-dark);
    transition: all 0.2s ease;
}

.header-bk .dropdown-item:hover {
    background-color: var(--bk-light-red-bg);
    color: var(--bk-primary-red);
}

/* Footer Styles */
.footer-bk {
    background-color: var(--bk-white);
    border-top: 1px solid var(--bk-border);
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bk p {
    margin-bottom: 0.5rem;
    color: var(--bk-text-light);
    font-size: 0.875rem;
}

.footer-bk a {
    color: var(--bk-primary-red);
    text-decoration: none;
}

.footer-bk a:hover {
    text-decoration: underline;
}

/* Content Cards */
.content-card {
    background-color: var(--bk-white);
    border: 1px solid var(--bk-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--bk-shadow-sm);
    transition: box-shadow 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--bk-shadow-md);
}

/* Page Titles */
.page-title {
    color: var(--bk-primary-red);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--bk-primary-red);
}

.section-title {
    color: var(--bk-text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-bk-primary {
    background-color: var(--bk-primary-red);
    color: var(--bk-white);
}

.btn-bk-primary:hover {
    background-color: var(--bk-hover-red);
    color: var(--bk-white);
    transform: translateY(-1px);
    box-shadow: var(--bk-shadow-md);
}

.btn-bk-secondary {
    background-color: var(--bk-white);
    border: 2px solid var(--bk-primary-red);
    color: var(--bk-primary-red);
}

.btn-bk-secondary:hover {
    background-color: var(--bk-primary-red);
    color: var(--bk-white);
}

.btn-bk-yellow {
    background-color: var(--bk-secondary-yellow);
    color: var(--bk-text-dark);
}

.btn-bk-yellow:hover {
    background-color: #E6BD00;
    color: var(--bk-text-dark);
    transform: translateY(-1px);
    box-shadow: var(--bk-shadow-md);
}

/* Links */
a {
    color: var(--bk-primary-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--bk-hover-red);
    text-decoration: underline;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-bk {
    width: 100%;
    margin-bottom: 1.5rem;
    background-color: var(--bk-white);
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--bk-border);
    border-radius: 8px;
    overflow: hidden;
}

.table-bk thead {
    background-color: var(--bk-primary-red);
    color: var(--bk-white);
}

.table-bk thead th {
    padding: 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-bk tbody tr {
    border-bottom: 1px solid var(--bk-border);
    transition: background-color 0.2s ease;
}

.table-bk tbody tr:last-child {
    border-bottom: none;
}

.table-bk tbody tr:nth-child(even) {
    background-color: #FAFAFA;
}

.table-bk tbody tr:hover {
    background-color: var(--bk-light-red-bg);
}

.table-bk tbody td {
    padding: 0.875rem 1rem;
    vertical-align: middle;
}

/* Forms */
.form-label {
    color: var(--bk-text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control, .form-select {
    border: 2px solid var(--bk-border);
    border-radius: 6px;
    padding: 0.625rem 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.9375rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bk-primary-red);
    box-shadow: 0 0 0 0.2rem rgba(215, 25, 32, 0.15);
    outline: none;
}

.form-check-input:checked {
    background-color: var(--bk-primary-red);
    border-color: var(--bk-primary-red);
}

.form-check-input:focus {
    border-color: var(--bk-primary-red);
    box-shadow: 0 0 0 0.2rem rgba(215, 25, 32, 0.15);
}

/* Badges */
.badge-bk {
    background-color: var(--bk-secondary-yellow);
    color: var(--bk-text-dark);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-bk-red {
    background-color: var(--bk-primary-red);
    color: var(--bk-white);
}

.badge-bk-yellow {
    background-color: var(--bk-secondary-yellow);
    color: var(--bk-text-dark);
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
    border-left: 4px solid;
}

.alert-success {
    background-color: #D4EDDA;
    border-left-color: #28A745;
    color: #155724;
}

.alert-danger {
    background-color: #F8D7DA;
    border-left-color: #DC3545;
    color: #721C24;
}

.alert-warning {
    background-color: #FFF3CD;
    border-left-color: #FFC107;
    color: #856404;
}

.alert-info {
    background-color: #D1ECF1;
    border-left-color: #17A2B8;
    color: #0C5460;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #D71920 0%, #B51219 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background-color: var(--bk-white);
    border-radius: 12px;
    box-shadow: var(--bk-shadow-lg);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #D71920 0%, #B51219 100%);
    color: var(--bk-white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.login-header img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--bk-white);
}

.login-body {
    padding: 2rem;
}

.login-body .form-group {
    margin-bottom: 1.25rem;
}

.login-body .btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
}

.login-footer {
    text-align: center;
    padding: 1.5rem 2rem;
    background-color: var(--bk-background-light);
    border-top: 1px solid var(--bk-border);
}

.login-footer a {
    color: var(--bk-primary-red);
    font-weight: 500;
}

/* Dashboard Cards */
.dashboard-card {
    background-color: var(--bk-white);
    border: 2px solid var(--bk-border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bk-shadow-lg);
    border-color: var(--bk-primary-red);
}

.dashboard-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.dashboard-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bk-text-dark);
    margin-bottom: 0.75rem;
}

.dashboard-card-text {
    color: var(--bk-text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
}

.dashboard-card .btn {
    margin-top: auto;
}

/* Schedule Styles */
.schedule-cell {
    padding: 0.75rem;
    min-height: 70px;
    vertical-align: top;
}

.schedule-shift {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.schedule-shift-day {
    background-color: var(--bk-primary-red);
    color: var(--bk-white);
}

.schedule-shift-evening {
    background-color: var(--bk-secondary-yellow);
    color: var(--bk-text-dark);
}

.schedule-shift-mixed {
    background-color: #FF8C00;
    color: var(--bk-white);
}

/* Profile Styles */
.profile-header {
    background: linear-gradient(135deg, var(--bk-primary-red) 0%, var(--bk-hover-red) 100%);
    color: var(--bk-white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--bk-white);
    color: var(--bk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.profile-details h2 {
    margin-bottom: 0.25rem;
    color: var(--bk-white);
}

.profile-details p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Utility Classes */
.text-bk-red { color: var(--bk-primary-red) !important; }
.text-bk-yellow { color: var(--bk-secondary-yellow) !important; }
.text-muted { color: var(--bk-text-muted) !important; }
.bg-bk-red { background-color: var(--bk-primary-red) !important; }
.bg-bk-yellow { background-color: var(--bk-secondary-yellow) !important; }
.border-bk-red { border-color: var(--bk-primary-red) !important; }

/* Loading Spinner */
.spinner-bk {
    border: 3px solid var(--bk-background-light);
    border-top: 3px solid var(--bk-primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 576px) {
    .main-container {
        padding: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .dashboard-card {
        padding: 1.25rem;
    }
    
    .table-bk {
        font-size: 0.875rem;
    }
    
    .table-bk thead th,
    .table-bk tbody td {
        padding: 0.625rem 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
    }
    
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    
    .login-body {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .main-container {
        padding: 2rem;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
}

@media (min-width: 992px) {
    .header-bk .navbar-nav {
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .header-bk,
    .footer-bk,
    .btn,
    .navbar {
        display: none !important;
    }
    
    .content-card {
        border: 1px solid #000;
        box-shadow: none;
    }
    
    body {
        background-color: white;
    }
}


/**
 * Bemmel & Kroon Werkplanning - Additional Improvements
 * Author: Stijn Heemskerk
 * MODERN ENHANCEMENTS & FIXES
 */

/* ====================
   PRINT STYLES
   ==================== */
@media print {
    @page {
        size: landscape;
        margin: 1cm;
    }
    
    .header-bk,
    .footer-bk,
    .btn,
    .navbar,
    .no-print {
        display: none !important;
    }
    
    .main-container {
        max-width: 100%;
        padding: 0;
    }
    
    .content-card {
        border: 1px solid #000;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .table-bk {
        font-size: 10pt;
    }
    
    .table-bk thead {
        background-color: #D71920 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ====================
   COPY-PASTE FUNCTIONALITY
   ==================== */
.credential-box {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #D71920;
}

.credential-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin: 8px 0;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #DEE2E6;
}

.credential-label {
    font-weight: 600;
    color: #333;
    min-width: 150px;
}

.credential-value {
    font-family: 'Courier New', monospace;
    background-color: #F8F9FA;
    padding: 8px 12px;
    border-radius: 4px;
    flex-grow: 1;
    margin: 0 12px;
    color: #D71920;
    font-weight: 600;
}

.copy-btn {
    background-color: #D71920;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: #B51219;
    transform: translateY(-1px);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background-color: #28a745;
}

/* ====================
   SCHEDULE EDIT MODAL
   ==================== */
.edit-schedule-modal .modal-body {
    padding: 25px;
}

.time-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.time-input-group label {
    min-width: 80px;
}

.hours-display {
    background-color: #FFF3CD;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid #FFD200;
    margin: 15px 0;
}

.hours-display strong {
    color: #D71920;
    font-size: 18px;
}

/* ====================
   IMPROVED LOGIN PAGE
   ==================== */
.login-container {
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.login-card {
    position: relative;
    z-index: 1;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-footer {
    position: relative;
}

.login-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, #DEE2E6, transparent);
}

/* ====================
   IMPROVED NOTIFICATIONS
   ==================== */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #DC3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(220, 53, 69, 0);
    }
}

/* ====================
   MOBILE IMPROVEMENTS
   ==================== */
@media (max-width: 768px) {
    .credential-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .credential-value {
        width: 100%;
        margin: 8px 0;
    }
    
    .copy-btn {
        width: 100%;
        margin-top: 8px;
    }
    
    .time-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .time-input-group label {
        width: 100%;
    }
}

/* ====================
   LOADING STATES
   ==================== */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ====================
   IMPROVED SCHEDULE TABLE
   ==================== */
.schedule-table {
    position: relative;
}

.schedule-cell {
    position: relative;
    transition: background-color 0.2s ease;
}

.schedule-cell:hover {
    background-color: rgba(215, 25, 32, 0.05);
}

.schedule-shift {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.schedule-shift::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.schedule-shift:hover::before {
    left: 100%;
}

.schedule-shift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.schedule-shift-actions {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    gap: 5px;
}

.schedule-shift:hover .schedule-shift-actions {
    display: flex;
}

.schedule-action-btn {
    background-color: white;
    border: none;
    border-radius: 3px;
    padding: 3px 6px;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.schedule-action-btn:hover {
    transform: scale(1.1);
}

/* ====================
   SUCCESS/ERROR ANIMATIONS
   ==================== */
.alert-animated {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================
   IMPROVED TOOLTIPS
   ==================== */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 6px 12px;
    background-color: #333;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* ====================
   PRINT PREVIEW STYLES
   ==================== */
.print-preview-container {
    background-color: #525659;
    padding: 40px 20px;
    min-height: 100vh;
}

.print-preview-page {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    min-height: 800px;
}

.print-preview-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #D71920;
}

.print-preview-actions {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

@media print {
    .print-preview-container {
        background-color: white;
        padding: 0;
    }
    
    .print-preview-actions {
        display: none !important;
    }
}
