.ooo-catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ooo-catalog-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #525B65;
}

.ooo-payment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ooo-payment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #ddd;
    box-shadow: 0 6px 0px rgba(0, 0, 0, 0.1);
}

.ooo-payment-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ooo-payment-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.ooo-payment-info {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.ooo-payment-details {
    display: flex;
    flex-direction: column;
}

.ooo-payment-name {
    font-weight: 500;
    font-size: 1rem;
}

.ooo-payment-description {
    font-size: 0.875rem;
    color: #666;
}

.ooo-integrate-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #34d399;
    transition: color 0.3s ease;
}

.ooo-integrate-button:hover {
    color: #28ba86;
}

.ooo-status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6b6b; /* Default to inactive */
}

.ooo-status-active {
    background-color: #34d399;
}

.ooo-status-inactive {
    background-color: #c3c3c3;
}