/* mivisor - Monitor as a Service - Custom Styles */

:root {
    --mivisor-red: #FF5252;
    --mivisor-coral: #FF6B6B;
    --mivisor-pink: #FF8E8E;
    --mivisor-light: #FFF5F5;
    --mivisor-dark: #2D3748;
}

/* Global Animations */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Gradient Text */
.text-gradient-mivisor {
    background: linear-gradient(135deg, var(--mivisor-red) 0%, var(--mivisor-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary Button Style */
.btn-mivisor {
    background: linear-gradient(135deg, var(--mivisor-red) 0%, var(--mivisor-coral) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(255, 82, 82, 0.2);
}

.btn-mivisor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 82, 82, 0.3);
}

.btn-mivisor:active {
    transform: translateY(0);
}

/* Secondary Button Style */
.btn-mivisor-secondary {
    background: white;
    color: var(--mivisor-red);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--mivisor-red);
    cursor: pointer;
}

.btn-mivisor-secondary:hover {
    background: var(--mivisor-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 82, 82, 0.15);
}

/* Card Styles */
.card-mivisor {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #D1D5DB;
    transition: all 0.3s ease;
}

.card-mivisor:hover {
    box-shadow: 0 8px 16px rgba(255, 82, 82, 0.15);
    border-color: var(--mivisor-pink);
    transform: translateY(-2px);
}

/* Link Styles */
.link-mivisor {
    color: var(--mivisor-red);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-mivisor:hover {
    color: var(--mivisor-coral);
    text-decoration: underline;
}

/* Badge Styles */
.badge-mivisor {
    background: linear-gradient(135deg, var(--mivisor-red) 0%, var(--mivisor-coral) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Input Styles */
.input-mivisor {
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.2s ease;
}

.input-mivisor:focus {
    outline: none;
    border-color: var(--mivisor-red);
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1);
}

/* Gradient Background */
.bg-gradient-mivisor {
    background: linear-gradient(135deg,
        rgba(255, 245, 245, 1) 0%,
        rgba(255, 235, 235, 0.5) 50%,
        rgba(255, 255, 255, 1) 100%);
}

/* File input styling */
input[type="file"] {
    cursor: pointer;
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background: var(--mivisor-pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mivisor-coral);
}
