body { | |
font-family: 'Arial', sans-serif; | |
background-color: #f8f9fa; | |
color: #343a40; | |
} | |
.container-fluid { | |
padding: 20px; | |
} | |
h1, h3 { | |
color: #495057; | |
font-weight: bold; | |
} | |
.btn { | |
min-width: 150px; | |
padding: 10px 20px; | |
font-size: 16px; | |
border-radius: 5px; | |
transition: all 0.3s ease; | |
} | |
.btn-primary:hover { | |
background-color: #0069d9; | |
} | |
.btn-danger:hover { | |
background-color: #c82333; | |
} | |
.btn-secondary:hover { | |
background-color: #5a6268; | |
} | |
.btn-warning:hover { | |
background-color: #d39e00; | |
} | |
.btn-info:hover { | |
background-color: #138496; | |
} | |
#status { | |
font-size: 18px; | |
font-weight: bold; | |
padding: 10px; | |
background-color: #e9ecef; | |
border-radius: 5px; | |
} | |
#transcript-preview { | |
background-color: #fff; | |
border-radius: 5px; | |
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |
font-size: 14px; | |
line-height: 1.6; | |
white-space: pre-wrap; | |
} | |
@media (max-width: 768px) { | |
.btn { | |
min-width: 100%; | |
margin-bottom: 10px; | |
} | |
.row { | |
margin-bottom: 15px; | |
} | |
#transcript-preview { | |
height: 300px; | |
} | |
} |