@import "theme.css";

.corsair-button {
  border: 0;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: "Saira"; 
  height: auto;
}

.big {
  border-radius: 8px;  
  width: 122px;
  height: 30px;
}

.small {
  border-radius: 6px;  
  width: 122px;
  height: 20px;
}

.primary {
  color: black;
  background-color: #EDE719;
}

.primary:hover:not(:disabled) {
  background-color: #EFEC3D;
}

.primary:active:not(:disabled) {
  background-color: #F2ED53;
}

.primary:disabled {
  background-color: #78750E;
}

.secondary {
  color: var(--font-color);
  background-color: #5F626B;
}

.secondary:hover:not(:disabled) {
  background-color: #777A7F;
}

.secondary:active:not(:disabled) {
  background-color: #86898E;
}

.secondary:disabled {
  background-color: #2E3136;
  color: #62656A;
}

.secondary .image {
  margin: 6px;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  margin-left: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}