/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

h1 {
    margin-top: 20px;
}

/* Branding Styles */
.branding {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-direction: column;
}

.title-text {
    text-align: center;
    margin-top: 10px;
}

#mainTitle {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: bold;
}

#subTitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
    margin-top: 0;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

/* Stream Selection */
select {
    margin: 15px;
    padding: 10px;
    font-size: 1rem;
}

/* Audio Player Styles */
audio {
    margin: 20px 0;
}

/* Metadata Display */
#metadata {
    margin: 20px;
    font-size: 1.1rem;
}

#licenseInfo {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

#licenseLink a {
    color: #007bff;
    text-decoration: none;
}

#licenseLink a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Dark Mode specific styling for License Info */
body.dark-mode #licenseInfo {
    color: #bbb;
}

/* Button Styles */
button {
    cursor: pointer;
    padding: 10px 20px;
    margin: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #f1f1f1;
}

button.dark-mode {
    background-color: #666;
}

button.dark-mode:hover {
    background-color: #444;
}

body.dark-mode #mainTitle {
    color: #f1f1f1;
}

body.dark-mode #subTitle {
    color: #bbb;
}
