/* static/css/styles.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

@layer base {
    html {
        font-family: "Inter", sans-serif;
    }
}

input {
    border: 1px solid #857e7e;
    border-radius: 0.1rem;
    padding: 0 0.5rem;
    margin-top: 0.5rem;
    height: 2.2rem;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    accent-color: #000000;
}
input[type="checkbox"],
input[type="radio"] {
    width: 1rem !important;
    height: 1rem !important;
    margin: 0 !important;
    accent-color: #000000 !important;
    border-color: #000000 !important;
    cursor: pointer;
}

/* Specifiek voor de container div om alignment te fixen */
.checkbox-container,
.radio-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
} 

input:focus {
    font-size: 1rem;
    border: 2px solid #000000;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: black !important;
    background-color: white !important;
    font-size: 1rem !important;
}

:root {
    --tw-ring-color: #000000 !important;
}

.button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 7px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.875rem;
}

.button:hover {
    background-color: #333333;
    color: #ffffff;
}

.big-input {
    margin-top: 0.25rem; /* mt-1 */
    padding: 0.25rem; /* p-1 */
    font-size: 1.125rem; /* text-l */
    display: block; /* block */
    width: 100%; /* w-full */
    border: 1px solid #d1d5db; /* border border-gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-sm */
    accent-color: #000000;
}

no-hover:hover {
    background-color: #00000000 !important;
}

h2 {
    color: black;
}

h3 {
    color: black;
}

* {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
}

label {
    font-size: 1rem;
    color: #000000;
    display: block;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 42rem;
    max-height: 90vh;
    overflow-y: auto;
    margin: 1rem;
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.action-button {
    background-color: black;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.action-button:hover {
    background-color: #333;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step.active .step-icon,
.step.completed .step-icon {
    background-color: #4b5563;
    color: white;
}

.step-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    text-align: center;
}

.step.active .step-name,
.step.completed .step-name {
    color: #4b5563;
}

.step-line {
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
    margin-top: 1.25rem;
}

.step-line.completed {
    background-color: #4b5563;
}

.step-info {
    font-size: 0.75rem;
    color: #4b5563;
    margin-top: 0.5rem;
    text-align: center;
}

.step-info .error {
    color: #ef4444;
    margin-top: 0.25rem;
}

.form-error {
    background-color: #fef2f2;
    border-left: 2px solid #fecaca;
    padding: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.introjs-tooltip {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 350px;
}

.introjs-button {
    text-shadow: none;
    background-image: none;
    text-align: center;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
    margin-right: 5px;
    color: #4b5563;
}

.introjs-prevbutton {
    margin-right: 5px;
}

.introjs-nextbutton {
    background-color: #000000 !important;
    color: white !important;
    border: none !important;
}

.introjs-nextbutton:hover, 
.introjs-nextbutton:focus {
    background-color: #333333 !important;
    color: white !important;
    box-shadow: none !important;
}

.introjs-helperLayer {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Reset and override all IntroJS skip button styling */
.introjs-skipbutton {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    color: #666 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
    cursor: pointer !important;
    font-family: sans-serif !important;
}

/* Add extra space in tooltip to accommodate the skip button */
.introjs-tooltip {
    padding-top: 10px !important;
}

/* Ensure buttons have consistent styling */
.introjs-button {
    text-shadow: none !important;
    background-image: none !important;
    text-align: center !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    border-radius: 0.25rem !important;
    border: 1px solid #e5e7eb !important;
    margin-right: 5px !important;
    color: #4b5563 !important;
}

.introjs-prevbutton {
    margin-right: 5px !important;
}

.introjs-nextbutton {
    background-color: #000000 !important;
    color: white !important;
    border: none !important;
}

.introjs-nextbutton:hover, 
.introjs-nextbutton:focus {
    background-color: #333333 !important;
    color: white !important;
    box-shadow: none !important;
}

.introjs-helperLayer {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close-button:hover {
    color: black;
}

.modal-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.modal-footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.rating-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.rating-label {
    cursor: pointer;
}
.rating-input {
    position: absolute;
    left: -9999px;
}
.rating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s;
}
.rating-input:checked + .rating-button {
    background-color: #000000;
    color: white;
    border-color: #000000;
}
.rating-button:hover {
    background-color: #f3f4f6;
}
.rating-input:checked + .rating-button:hover {
    background-color: #333333;
}
/* Add style for disabled action buttons */
.action-button:disabled {
    background-color: #d1d5db; /* gray-300 */
    color: #6b7280; /* gray-500 */
    cursor: not-allowed;
    opacity: 0.7;
}
.action-button:disabled:hover {
    background-color: #d1d5db; /* Keep the disabled background color on hover */
}
button.action-button.primary,
a.action-button.primary {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
}
button.action-button.primary:hover,
a.action-button.primary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.action-button .spinner {
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

.action-button.button-success {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

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

.introjs-tooltip.introjs-tooltip-wide {
    max-width: 600px !important;
    min-width: 400px !important;
    width: auto !important;
    white-space: normal;
}


@keyframes enter {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes leave {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.animate-enter {
    animation: enter 0.3s ease-out;
}

.animate-leave {
    animation: leave 0.3s ease-in forwards;
}

/* Custom Company Dropdown Styles */
.company-dropdown-container {
    position: relative;
    display: inline-flex !important; /* Use inline-flex instead of inline-block */
    align-items: center !important; /* Center vertically within container */
    flex-shrink: 0 !important; /* Prevent container from affecting header height */
    height: 36px !important; /* Match button height exactly */
    max-height: 36px !important; /* Force maximum height */
    min-height: 36px !important; /* Force minimum height */
    vertical-align: middle !important;
    margin: 0 !important;
}

.company-dropdown-button {
    width: 200px !important; /* Fixed width for consistency */
    text-align: left;
    border: none !important; /* Remove border to match select styling */
    transition: all 0.2s ease;
    height: 36px !important; /* Smaller height to match select exactly */
    max-height: 36px !important; /* Force maximum height */
    min-height: 36px !important; /* Force minimum height */
    line-height: 20px !important; /* Tighter line height */
    box-sizing: border-box !important;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow text */
    padding: 8px 12px !important; /* Smaller padding */
    font-size: 14px; /* Match select font size */
    margin: 0 !important; /* Remove any default margins */
    vertical-align: middle !important;
}

.company-dropdown-button:hover {
    background-color: #f9fafb;
}

.company-dropdown-button:focus {
    outline: none;
    background-color: #ffffff;
}

.company-dropdown-button .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0; /* Allow flex child to shrink below content size */
}

.company-dropdown-button svg {
    vertical-align: middle;
}

/* Force header height consistency */
header.h-16 {
    height: 64px !important;
    max-height: 64px !important;
    min-height: 64px !important;
}

header.h-16 > div {
    height: 100% !important;
}

.company-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 50;
    margin-top: 0.5rem;
    width: 16rem;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.company-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.company-search-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.company-list {
    max-height: 16rem;
    overflow-y: auto;
}

.company-item {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.company-item:hover,
.company-item.highlighted {
    background-color: #f3f4f6;
    color: #111827;
}

.company-item:last-child {
    border-bottom: none;
}

/* Scrollbar styling for company list */
.company-list::-webkit-scrollbar {
    width: 4px;
}

.company-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.company-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.company-list::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.dashboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-table thead {
    background-color: #f9fafb;
}

.dashboard-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-table tbody tr {
    transition: background-color 0.15s ease;
}

.dashboard-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #9ca3af;
}

.dashboard-table tbody tr:hover {
    background-color: #f9fafb;
}

.dashboard-table tbody tr.changed-row {
    border: 2px solid #60a5fa;
}

.dashboard-table tbody tr.archived-row {
    background-color: #f9fafb;
}

.dashboard-table td {
    padding: 1rem;
    font-size: 0.875rem;
    color: #374151;
    vertical-align: top;
}

.dashboard-table th.text-right,
.dashboard-table td.text-right {
    text-align: right;
}

.flex-row-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.flex-row-end {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0.5rem;
}

.flex-row-end > .dropdown {
    flex-shrink: 0;
}

.flex-row-end > .action-buttons-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1300px) {
    .flex-row-end > .action-buttons-group {
        flex-direction: column;
        align-items: flex-end;
    }
}

@media (max-width: 900px) {
    .dashboard-table td {
        padding: 0.5rem;
    }
    .dashboard-table th {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .dashboard-table td {
        padding: 0.25rem 0.5rem;
    }
    .dashboard-table th {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    .dashboard-table td {
        font-size: 0.75rem;
    }
    .action-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

.relative {
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    white-space: nowrap;
}

.badge-default {
    background-color: #f3f4f6;
    color: #6b7280;
}

.badge-secondary {
    background-color: #f3f4f6;
    color: #6b7280;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-gray {
    background-color: #f3f4f6;
    color: #6b7280;
}

.file-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
}

.file-icon.pending {
    color: #ef4444;
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.tooltip {
    position: absolute;
    z-index: 1000;
    padding: 0.5rem 0.75rem;
    background-color: white;
    color: #1f2937;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    max-width: 20rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tooltip.show {
    opacity: 1;
}

.tooltip-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tooltip-files {
    max-height: 12rem;
    overflow-y: auto;
}

.tooltip-files::-webkit-scrollbar {
    width: 4px;
}

.tooltip-files::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.tooltip-files::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    position: relative;
    background-color: white;
    border: 1px solid #d1d5db;
    padding: 0.375rem 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.dropdown-trigger:hover {
    background-color: #f9fafb;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    min-width: 12rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu.dropdown-up {
    bottom: 100%;
    top: auto;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.dropdown-item svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.dropdown-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dropdown-item.disabled:hover {
    background-color: transparent;
}

.period-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.last-modified {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.last-modified-time {
    font-size: 0.875rem;
    color: #6b7280;
}

.last-modified-user {
    font-size: 0.75rem;
    color: #9ca3af;
}

footer, [role="contentinfo"] {
    position: relative;
    z-index: 1;
}

.action-notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    border: 2px solid white;
}

.dropdown-item.important-action::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.lock-icon {
    color: #ef4444;
    cursor: help;
    flex-shrink: 0;
}

/* Dual Range Slider - Period Selector */
.dual-range-container {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 20px 0;
    border: none;
    outline: none;
}

.dual-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
    border: none;
    outline: none;
    box-shadow: none;
}

.dual-range-highlight {
    position: absolute;
    top: 50%;
    height: 4px;
    background: #1f2937;
    border-radius: 2px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    transition: left 0.1s ease, width 0.1s ease;
}

.dual-range-input {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent !important;
    height: 20px;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    accent-color: transparent;
}

.dual-range-input:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.dual-range-input:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.dual-range-input:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.dual-range-input#range-start {
    z-index: 8;
}

.dual-range-input#range-end {
    z-index: 7;
}

.dual-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #1f2937;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: -6px;
    position: relative;
}

.dual-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.5);
}

.dual-range-input::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

.dual-range-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #1f2937;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dual-range-input::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.5);
}

.dual-range-input::-moz-range-thumb:active {
    transform: scale(1.1);
}

.dual-range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: transparent !important;
    border: none;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    color: transparent;
    cursor: pointer;
}

.dual-range-input::-webkit-slider-container {
    background: transparent !important;
    min-block-size: 0;
    overflow: hidden;
}

.dual-range-input::-webkit-progress-value,
.dual-range-input::-webkit-progress-bar {
    display: none !important;
    background: transparent !important;
}

.dual-range-input::-ms-track {
    width: 100%;
    height: 0;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.dual-range-input::-ms-fill-lower,
.dual-range-input::-ms-fill-upper {
    background: transparent;
}

.dual-range-input::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
}

.dual-range-input:focus::-webkit-slider-thumb {
    outline: none;
    box-shadow: none;
}

.dual-range-input:focus::-moz-range-thumb {
    outline: none;
    box-shadow: none;
}

.dual-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #374151;
    margin-top: 8px;
    padding: 0 4px;
}

.period-shortcut-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.period-shortcut-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.period-shortcut-btn.active {
    background: #1f2937;
    color: white;
    border-color: #1f2937;
}