/*
Plugin Stylesheet for Status Features
*/

/* Base style for status indicators */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
    animation: blink 1.4s infinite;
}

/* Specific color for order status (blue dot) */
.blue-status-indicator {
    background-color: blue;
}

/* Specific color for send status (green dot) */
.green-status-indicator {
    background-color: green;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

html {
    scroll-behavior: smooth;
}

.audio-container {
    margin-bottom: 20px;
}

audio {
    width: 100%;
}