.remove-filter-button {
    position: absolute;
    font-size: 22px;
    top: 25px;
    left: 185px;
    border: none;
    z-index: 9999;
    color: red;
    background-color: transparent;
    transition: 0.3s;
}

.remove-filter-button:hover {
    scale: 1.3;
    cursor: pointer;
}

.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 4px;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    width: 100%;
    flex-wrap: wrap;
}

.step-links {
    display: flex;
}

.step-links a, .step-links span {
    white-space: nowrap;
}

.step-links a, .step-links .disabled {
    text-decoration: none;
    color: black;
    background-color: white;
    border: 1px solid #8080804d;
    padding: 6px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.step-links a:hover {
    color: white;
    background-color: #2d3e6e;
}

.step-links .current-page {
    font-weight: bold;
    color: white;
    background-color: #2d3e6e;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
}

.pagination .date-filter-with-summary {
    display: flex;
    gap: 40px;
    font-size: 15px;
    color: #6c757d;
    margin-left: auto;
    align-items: center;
    white-space: nowrap;
}

.jump-to-page-form {
    display: flex;
    align-items: center;
}

.jump-to-page-form input[type="number"] {
    width: 60px;
    padding: 6px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
    color: #495057;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

.jump-to-page-form input[type="number"]:focus {
    border-color: #80bdff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.jump-to-page-form button {
    padding: 6px 12px;
    font-size: 14px;
    color: black;
    background-color: #dde1ed;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.jump-to-page-form button:hover {
    color: white;
    background-color: #2d3e6e;
}

.paginator-select-objects-count {
    cursor: pointer;
    padding: 6px 11px;
    height: 100%;
    border: 1px solid #8080804d;
    border-radius: 3px;
    font-size: 15px;
}

.cancel-filter-button {
    background-color: #ff5353;
    color: black;
    border: 1px solid #8080804d;
    transition: 0.2s;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
}

.cancel-filter-button:hover {
    opacity: 0.8;
    color: white;
}

.disabled {
    cursor: not-allowed;
}

.nav-btn {
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-btn::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    text-decoration: none;
}

.nav-btn:hover {
    color: #adb5bd; /* Soft gray on hover */
}

.nav-btn:hover::after {
    width: 100%;
}