/* Connectors Pages Styles */

/* Gradient backgrounds */
.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

/* Card hover effects */
.hover-shadow-lg {
    transition: all 0.3s ease;
}

.hover-shadow-lg:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Custom gray colors */
.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-900 {
    color: #111827;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb !important;
}

/* Transition utilities */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom button styles */
.btn-outline-primary:hover {
    background-color: #f97316;
    border-color: #f97316;
    color: white;
}

.btn-outline-secondary {
    color: #6b7280;
    border-color: #e5e7eb;
}

.btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.btn-outline-success {
    color: #10b981;
    border-color: #10b981;
}

/* Custom form control */
.form-control:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

/* Flex utilities */
.flex-fill {
    flex: 1 1 auto;
}

/* Font weight utilities */
.fw-medium {
    font-weight: 500;
}

/* Processor card logo container */
.processor-logo-container {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

.processor-logo-container img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
} 