:root {
    color-scheme: dark;
}

.glow-button {
    position: relative;
    transition: all 0.2s ease;
}

.glow-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 198, 255, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.glow-button:hover {
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.glow-button:hover::after {
    opacity: 1;
}

.status-ready {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.8), rgba(34, 211, 238, 0.3));
}

.status-main {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.3));
}




