.bizopps-scroll-container {
    position: relative;
    padding: 20px 0;
}

.bizopps-cards-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bizopps-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.bizopps-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    width: 290px;
    min-width: 270px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bizopps-title {
    font-size: 18px !important;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid #DADCE0;
    padding-bottom: 10px;
}

.bizopps-data-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.bizopps-data-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.bizopps-data-table td {
    padding: 5px 0px;
    font-size: 16px;
}

.bizopps-data-table td:first-child {
    color: #666;
    font-weight: 400;
}

.bizopps-data-table td:last-child {
    text-align: right;
}

.bizopps-value {
    /* font-weight: 600; */
    padding: 4px 7.5px;
    border-radius: 4px;
    display: inline-block; width: 100%;
}

.bizopps-growth {
    background: #d4edda;
    color: #155724;
}

/* Concentration colors */
.bizopps-concentration-low {
    background: #d4edda;
    color: #155724;
}

.bizopps-concentration-medium {
    background: #fff3cd;
    color: #856404;
}

.bizopps-concentration-high {
    background: #fbeaea;
    color: #ff5900;
}

/* Barrier colors */
.bizopps-barrier-low {
    background: #d4edda;
    color: #155724;
}

.bizopps-barrier-medium {
    background: #fff3cd;
    color: #856404;
}

.bizopps-barrier-high {
    background: #fbeaea;
    color: #ff5900;
}

/* Trend colors */
.bizopps-trend-rising {
    background: #d4edda;
    color: #155724;
}

.bizopps-trend-stable {
    background: #d1ecf1;
    color: #0c5460;
}

.bizopps-trend-declining {
    background: #fbeaea;
    color: #ff5900;
}

.bizopps-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.bizopps-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.bizopps-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.bizopps-scroll-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bizopps-scroll-btn svg {
    fill: #333;
}

.bizopps-left {
    left: -24px;
}

.bizopps-right {
    right: -24px;
}

/* Modal styles */
.bizopps-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bizopps-modal-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: 380px;
    max-width: 90%;
}

.bizopps-modal-form h4 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
}

.bizopps-modal-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.bizopps-modal-submit, .bizopps-modal-cancel {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.bizopps-modal-submit {
    background: #1B334B;
    color: white;
}

.bizopps-modal-submit:hover {
    background: #007fff;
}

.bizopps-modal-cancel {
    background: #e9ecef;
    color: #333;
}

.bizopps-modal-cancel:hover {
    background: #dee2e6;
}

@media (max-width: 768px) {
    .bizopps-scroll-btn {
        display: none;
    }
    
    .bizopps-card {
        min-width: 280px;
    }
}