.procurement-view {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: inherit; 
}

.procurement-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.procurement-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.procurement-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-family: inherit;
}

.procurement-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: inherit;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px; 
    border-radius: 6px; 
    font-size: 14px; 
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.status-active { background-color: #28a745; }
.status-expired { background-color: #999999; }
.status-cancelled { background-color: #dc3545; }
.status-postponed { background-color: #fd7e14; }

/* Alert Box */
.procurement-notes {
    background-color: #f0f7ff;
    border-left: 4px solid #5856D6;
    padding: 20px;
    border-radius: 0 4px 4px 0;
    color: #333;
    font-family: inherit;
}

.info-columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0; 
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #eee; 
    padding-bottom: 20px;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    width: fit-content;
    display: block;
    
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    font-weight: 600;
    font-family: inherit;
    
    background-color: transparent;
    padding: 0;
}

.info-value {
    font-size: 16px;
    color: #5856D6;
    font-weight: 700;
    font-family: inherit;
    padding-left: 0; 
}

.info-value-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    font-family: inherit;
    padding-left: 0; 
}

.files-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-family: inherit;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.file-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.file-card:hover {
    border-color: #5856D6;
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.1);
    transform: translateY(-2px);
}

.file-icon {
    flex-shrink: 0;
    color: #5856D6;
}

.file-details {
    flex-grow: 1;
    overflow: hidden;
}

.file-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: inherit;
}

.file-meta {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    text-transform: uppercase;
    font-family: inherit;
}

@media (max-width: 768px) {
    .procurement-container { gap: 30px; }
    .procurement-title { font-size: 24px; }
}