/* Tổng quan */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.header {
    background-color: #015a58;
    padding: 20px;
    text-align: center;
}

.header h1 {
    color: white;
}

.lesson-header {
    background-color: #00af54;
    padding: 10px;
    text-align: center;
}

/* Video section sẽ cố định khi cuộn */
.video-section {
    display: flex;
    justify-content: space-between;
    position: sticky; /* Cố định khi cuộn */
    top: 0; /* Cố định phần video ở đầu trang khi cuộn */
    background-color: white;
    padding: 10px;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
}

.video-column {
    width: 32%;
}

video {
    width: 100%;
    height: auto;
}

/* Phần nội dung sẽ cuộn dưới phần video */
.content {
    padding: 20px;
}

/* Mô tả bài học và bài tập */
.description, .exercise {
    margin-bottom: 20px;
}

.description h3, .exercise h3 {
    background-color: #00af54;
    color: white;
    padding: 10px;
    margin: 0;
    text-align: center;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: none; /* Tắt khả năng thay đổi kích thước */
}

textarea::placeholder {
    color: #999;
}
