.form-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

textarea {
    width: 100%;
    height: 110px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
}

.transcribe-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.transcribe-button:hover {
    background: #0056b3;
}

.result-card {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin-top: 25px;
    border-radius: 4px;
    position: relative;
}

.ipa-box {
    font-size: 1.4em;
    font-family: monospace;
    color: #b11e6b;
    margin-top: 10px;
    padding-right: 90px;
}

.copy-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    background: #6c757d;
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 0;
}

.copy-btn:hover {
    background: #5a6268;
}

audio {
    width: 100%;
    margin-top: 10px;
}
/* multi-commit test comment */
