.avc-recorder-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.avc-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.avc-record-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.avc-record-button:hover {
    background-color: #0069d9;
}

.avc-recording-container {
    text-align: center;
    margin-bottom: 20px;
}

.avc-timer {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.avc-video-preview {
    width: 100%;
    max-height: 400px;
    background-color: #000;
    margin-bottom: 10px;
}

.avc-audio-recording {
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.avc-visualizer {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.avc-recording-text {
    position: relative;
    z-index: 2;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
}

.avc-controls {
    margin-top: 10px;
}

.avc-stop-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.avc-stop-button:hover {
    background-color: #c82333;
}

.avc-preview-container {
    text-align: center;
    margin-bottom: 20px;
}

.avc-recorded-video, .avc-recorded-audio {
    width: 100%;
    margin-bottom: 10px;
}

.avc-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.avc-send-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.avc-send-button:hover {
    background-color: #218838;
}

.avc-discard-button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.avc-discard-button:hover {
    background-color: #5a6268;
}

.avc-sender-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.avc-sender-name, .avc-sender-email, .avc-sender-message {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
}

.avc-sender-message {
    min-height: 100px;
    resize: vertical;
}

.avc-confirm-send-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    align-self: flex-start;
}

.avc-confirm-send-button:hover {
    background-color: #218838;
}

.avc-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.avc-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.avc-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}