.rfp-5c7e3822-container {
    font-family: inherit;
    width: 100%;
    margin: 0 auto;
}

/* Info Bar */
.rfp-5c7e3822-info-bar {
    display: flex;
    align-items: center;
    background-color: #e6f6f5;
    border: 1px solid rgba(0, 162, 156, 0.15);
    border-radius: 8px;
    padding: 14px 20px;
    margin-bottom: 30px;
}

.rfp-5c7e3822-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00a29c;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.rfp-5c7e3822-info-text {
    margin: 0;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
}

/* Header Filters */
.rfp-5c7e3822-header-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.rfp-5c7e3822-tabs {
    display: flex;
    background-color: #f1f3f4;
    padding: 4px;
    border-radius: 30px;
}

.rfp-5c7e3822-tab {
    background: none;
    border: none;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    color: #666666;
    transition: all 0.3s ease;
}

.rfp-5c7e3822-tab.active {
    background-color: #00a29c;
    color: #ffffff;
}

.rfp-5c7e3822-search-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.rfp-5c7e3822-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.rfp-5c7e3822-search-icon svg {
    fill: currentColor;
}

.rfp-5c7e3822-search-input {
    width: 100%;
    padding: 10px 15px 10px 42px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    background-color: #ffffff;
    box-sizing: border-box;
}

.rfp-5c7e3822-search-input:focus {
    border-color: #00a29c;
}

/* RFP Items */
.rfp-5c7e3822-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rfp-5c7e3822-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rfp-5c7e3822-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.rfp-5c7e3822-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: #f6fdfd;
    margin-right: 25px;
    flex-shrink: 0;
}

.rfp-5c7e3822-icon svg {
    fill: #00a29c;
}

.rfp-5c7e3822-body {
    flex-grow: 1;
    margin-right: 25px;
}

.rfp-5c7e3822-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.rfp-5c7e3822-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.rfp-5c7e3822-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.rfp-5c7e3822-deadline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #00a29c;
    color: #00a29c;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
}

.rfp-5c7e3822-deadline-badge svg {
    fill: #00a29c;
}

.rfp-5c7e3822-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00a29c;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.rfp-5c7e3822-btn:hover {
    opacity: 0.9;
}

.rfp-5c7e3822-no-results {
    text-align: center;
    padding: 40px;
    color: #999999;
    font-size: 15px;
    background: #fafafa;
    border-radius: 8px;
}

/* Responsiveness */
@media (max-width: 991px) {
    .rfp-5c7e3822-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .rfp-5c7e3822-icon {
        margin-bottom: 15px;
    }
    .rfp-5c7e3822-body {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .rfp-5c7e3822-meta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .rfp-5c7e3822-header-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .rfp-5c7e3822-search-wrapper {
        max-width: none;
    }
    .rfp-5c7e3822-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .rfp-5c7e3822-btn {
        justify-content: center;
    }
}
