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

body {
    font-family: 'ABeeZee', sans-serif;
    letter-spacing: 0.5px;
    font-size: 16px;
}

h1, h2, h3 {
    font-weight: bold;
    color: #222;
}

p, label, input, button {
    font-size: 16px;
}

body {
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
}

textarea {
    resize: none;
}

.btn {
    margin-right: 10px;
}

#recording-status {
    color: #dc3545;
    font-weight: bold;
}

.settings-row {
    display: flex;
    align-items: flex-start; /* top-aligned */
    gap: 30px;
    padding: 15px 40px;
    background-color: #fff;
}

.settings-item {
    display: flex;
    flex-direction: column;
    width: 120px; /* consistent width for each control */
}

.settings-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}

.settings-radio {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.settings-input {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    box-sizing: border-box;
}

.delete-btn {
    margin-top: 20px;
    padding: 6px 12px;
    background-color: #ff6666;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.delete-btn:hover {
    transform: translateY(-2px) !important;
    background-color: #e05555;
}

.send-button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
}

.send-button:hover {
    background-color: #0664c9;
}

.result-link-btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
}

div[onclick]:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.result-image:hover {
    transform: scale(1.05) !important;
}

.search-button:hover {
    transform: translateY(-2px) !important;
    background-color: #d0d0d0 !important;
}
