:root {
    --primary-color: #fe8d7e;
    --secondary-color: #f57374;
    --background-color: #f5f5f5;
    --text-color: #6f879b;
    --button-gradient: linear-gradient(to right, #fe8d7e, #f57374);
}

body {
    font-family: Lato, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding-top: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

header {
    background-color: #0077be;
    color: white;
    padding: 20px;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #21588b;
    font-family: Quicksand, sans-serif !important;
    font-weight: 700;
}

.popup-module {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.btn-primary {
    background-image: var(--button-gradient);
    border: none;
    color: #fff;
    font-size: .875rem;
    padding: .7rem 1.75rem;
    font-weight: 700;
    line-height: 1.3rem;
    border-radius: 500px;
}

.btn-primary:hover {
    background-image: linear-gradient(to right, #f57374, #fe8d7e);
}

.btn-primary:disabled {
    background-image: var(--button-gradient);
    opacity: 0.5;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #333;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.checklist {
    margin-bottom: 20px;
}

.item {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
}

.checkmark.active {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.transcription-box {
    background-color: #000;
    color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    line-height: 1.5;
}

.summary-box {
    background-color: #000;
    color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.loading {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.hidden {
    display: none;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    body {
        padding-top: 10px;
    }

    .logo {
        height: 60px;
    }
}