/* Custom Navigation Tabs (Pills) */
.custom-work-pills .nav-link {
    background-color: #ffffff;
    color: #495057;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 0 0.25rem;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.custom-work-pills .nav-link:hover {
    background-color: #f8f9fa;
    color: #6b0000;
}

.custom-work-pills .nav-link.active {
    background-color: #6b0000 !important;
    color: #ffffff !important;
    border-color: #6b0000 !important;
    box-shadow: 0 0.25rem 0.5rem rgba(107, 0, 0, 0.2);
}

/* Custom Buttons */
.btn-outline-theme {
    color: #6b0000;
    border-color: #6b0000;
    background-color: transparent;
    font-weight: 600;
}

.btn-outline-theme:hover {
    background-color: #6b0000;
    color: #ffffff;
}

/* Text Theme Color */
.text-theme {
    color: #6b0000 !important;
}

/* Javne Nabavke Kartice */
.procurement-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.procurement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.procurement-img {
    height: 110px;
    width: 100%;
    object-fit: cover;
}

.procurement-link {
    transition: color 0.2s ease;
}

.procurement-link:hover {
    color: #6b0000 !important;
}