#gma-voice-button {
    background: #2d7755;
}

.gma-voice-button {
    position: relative;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gma-voice-button:hover {
    opacity: 0.8;
}

.gma-voice-button.recording {
    color: #ff4444;
}

.recording-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff4444;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.recording-indicator.active {
    opacity: 1;
}

.audio-icon {
  display: inline-block;
  animation: voicepulse 0.6s infinite ease-in-out alternate;
}

@keyframes voicepulse {
  0% { transform: scaleY(0.6); }
  100% { transform: scaleY(1); }
}