/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="file"],
input[type="number"],
input[type="text"],
textarea {
    max-width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

textarea {
    resize: vertical;
    height: 150px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

button.download {
    background-color: #28a745;
}

button.download:hover {
    background-color: #218838;
}

/* Specific section styles */
.lrc-file,
.srt-file {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.options {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.options label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.options input[type="number"],
.options input[type="checkbox"] {
    width: auto;
    margin-left: 10px;
}

.transform {
    display: block;
    width: 100%;
    margin: 20px 0;
}

.srt-file div {
    margin-bottom: 10px;
}

.srt-file button.download {
    margin-left: 10px;
}

/* Responsive design */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.5em;
    }

    main {
        padding: 10px;
    }

    textarea {
        height: 100px;
    }
}