/* UBF - Javne nabavke stilovi */

.procurement-section {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.procurement-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.procurement-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.procurement-card .card-header {
    background-color: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.procurement-card .card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.procurement-card .card-header .meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.procurement-card .file-type {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: #e9ecef;
    color: #495057;
}

.procurement-card .publish-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.procurement-card .card-body {
    padding: 1.5rem;
    background-color: #fff;
}

.procurement-card .card-body p {
    color: #495057;
    margin-bottom: 1.5rem;
}

.procurement-card .download-btn {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.procurement-card .status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.search-filter {
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6c757d;
}

.search-box input {
    padding-left: 40px;
    border-radius: 4px;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.pdf-badge { background-color: #f8d7da; color: #721c24; }
.doc-badge { background-color: #e2e3e5; color: #383d41; }
.xls-badge { background-color: #d1ecf1; color: #0c5460; }
.zip-badge { background-color: #e8daef; color: #6c3483; }

.procurement-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.procurement-pagination a,
.procurement-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.procurement-pagination a:hover {
    background-color: #0e6199;
    color: #fff;
    border-color: #0e6199;
}

.procurement-pagination .active {
    background-color: #0e6199;
    color: #fff;
    border-color: #0e6199;
}
