* {
box-sizing: border-box;
}
body, html, #root {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
font-family: var(--vscode-font-family);
font-size: var(--vscode-font-size);
}
button:hover {
opacity: 0.9;
}
button:active {
opacity: 0.8;
}
/* Pulsing animation for executing tasks */
@keyframes pulse {
0%, 100% {
opacity: 1;
box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}
50% {
opacity: 0.9;
box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
}
}
.task-executing {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}