@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

.record-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-color: #e97439;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  line-height: 1.2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 9999;
  box-sizing: border-box;
  overflow: visible;
  box-shadow: 0 0 20px rgba(233,116,57,0.5);
  transition: transform 0.3s ease;
}
.record-widget:hover {
  transform: scale(1.05);
}
.record-widget::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(233,116,57, 0.4);
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  .record-widget {
    width: 70px;
    height: 70px;
    font-size: 11px;
  }
}