body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    text-align: center;
    color: #4CAF50;
}

div {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    resize: none;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

#preview-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
	margin-bottom: 250px;
}

#preview-table th, #preview-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

#preview-table th {
    background-color: #4CAF50;
    color: white;
}

#preview-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#preview-table tr:hover {
    background-color: #e9e9e9;
}

/* Baris bawah melayang untuk pemutar musik dan tombol */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #4CAF50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

audio {
    width: 70%;
}

.bottom-bar button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bottom-bar button:hover {
    background-color: #45a049;
}

#download {
    position: fixed;
    bottom: 120px; /* Jarak dari bawah */
    right: 5px; /* Jarak dari sisi kanan */
    z-index: 1000; /* Pastikan di atas elemen lain */
}

#lyrics {
    width: 100%; /* Lebar penuh */
    height: 100px; /* Tinggi awal */
    padding: 10px; /* Ruang di dalam textarea */
    border: 2px solid #4CAF50; /* Batas */
    border-radius: 5px; /* Sudut melengkung */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Bayangan */
    resize: vertical; /* Mengizinkan perubahan ukuran secara vertikal */
    white-space: nowrap; /* Mencegah pembungkus otomatis */
    overflow-x: auto; /* Tambahkan scrollbar horizontal jika perlu */
    font-size: 16px; /* Ukuran font */
    transition: border-color 0.3s ease; /* Transisi untuk interaksi */
}

/* Menyoroti batas saat textarea difokuskan */
#lyrics:focus {
    border-color: #45a049; /* Ubah warna batas saat fokus */
}

