/* Link Generator AI - Global Styles */

:root {
    --space-dark: #0a0e27;
    --space-blue: #1a1f3a;
    --nebula-purple: #7c3aed;
    --star-white: #f8fafc;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --danger-red: #ef4444;
}

/* Base styles */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Card styles */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Button styles */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: white;
}

/* Status badges */
.status-connected {
    background-color: var(--success-green);
    color: white;
}

.status-disconnected {
    background-color: var(--danger-red);
    color: white;
}

.status-pending {
    background-color: var(--warning-orange);
    color: white;
}

/* Loading spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Toast notifications */
.toast-container {
    z-index: 99999 !important;
}

/* Material icons alignment */
.material-icons.align-middle {
    vertical-align: middle;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--nebula-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}
