/* Animated Background */
body {
    position: relative;
    background: linear-gradient(45deg, #f6f8fa, #ffffff);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 100%
    );
    pointer-events: none;
}

/* Animated circles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    animation: moveCircles 15s infinite;
}

@keyframes moveCircles {
    0%, 100% {
        background: 
            radial-gradient(600px circle at 0% 0%, rgba(66, 133, 244, 0.1) 0%, transparent 70%),
            radial-gradient(500px circle at 100% 30%, rgba(244, 180, 0, 0.1) 0%, transparent 70%),
            radial-gradient(400px circle at 30% 100%, rgba(219, 68, 55, 0.1) 0%, transparent 70%);
    }
    33% {
        background: 
            radial-gradient(600px circle at 10% 10%, rgba(66, 133, 244, 0.1) 0%, transparent 70%),
            radial-gradient(500px circle at 90% 40%, rgba(244, 180, 0, 0.1) 0%, transparent 70%),
            radial-gradient(400px circle at 40% 90%, rgba(219, 68, 55, 0.1) 0%, transparent 70%);
    }
    66% {
        background: 
            radial-gradient(600px circle at -10% 5%, rgba(66, 133, 244, 0.1) 0%, transparent 70%),
            radial-gradient(500px circle at 95% 35%, rgba(244, 180, 0, 0.1) 0%, transparent 70%),
            radial-gradient(400px circle at 35% 95%, rgba(219, 68, 55, 0.1) 0%, transparent 70%);
    }
}

/* Add subtle hover effects to buttons and cards */
.btn {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.panel, .input-group {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
}

.panel:hover, .input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Pulse animation for important buttons */
.btn-success {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Add smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Container styling */
.container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
