/* Broker Integrations Page Styles */

/* Ensure dark background for the entire page */
body {
    background-color: #000000 !important;
}

.landing-page-drk.top-wrapper {
    background-color: #000000 !important;
}

.broker-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 1.5rem;
}

.broker-card:hover {
    background-color: #242424;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.broker-content {
    min-width: 0; /* Allows flex item to shrink */
}

.broker-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    min-width: 140px;
    height: 140px;
}

.broker-icon {
    width: 140px;
    height: 140px;
    background-color: #0a0a0a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.broker-icon img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Remove filter - let logos display in their natural colors */
}

.status-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-live,
.status-active {
    background-color: #0d6efd;
    color: #ffffff;
}

.status-api {
    background-color: #0d6efd;
    color: #ffffff;
}

.status-coming-soon {
    background-color: #6c757d;
    color: #ffffff;
}

.status-partnership {
    background-color: #6c757d;
    color: #ffffff;
}

.learn-more-link {
    transition: all 0.2s ease;
}

.learn-more-link:hover {
    opacity: 0.8;
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .broker-card {
        margin-bottom: 1.5rem;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .broker-content {
        flex-grow: 1;
    }
    
    .broker-icon-wrapper {
        width: 80px;
        min-width: 80px;
        height: 80px;
        align-self: flex-start;
        margin-top: 0;
    }
    
    .broker-icon {
        width: 80px;
        height: 80px;
        padding: 0.75rem;
    }
    
    .broker-icon img {
        max-width: 100%;
        max-height: 100%;
    }
}
