.transcript-page {
    font-family: Arial, sans-serif;
}

.transcript-page .transcript-container {
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.transcript-page .transcript-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.transcript-page .transcript-user-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.transcript-page .transcript-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.transcript-page .transcript-table th,
.transcript-page .transcript-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.transcript-page .transcript-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.transcript-page .transcript-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.transcript-page .transcript-pagination-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.transcript-page .transcript-pagination-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.transcript-page .transcript-pagination-btn:hover:not(:disabled) {
    background-color: #0056b3;
}

.transcript-page .transcript-pagination-info {
    font-size: 1rem;
    font-weight: bold;
}
