/* Shoutcast 2 CSS - Modernized for bo-is.eu Style 
   Farbschema: Dark-Background (#121212), Akzent (#00aaff)
*/

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Container-Box */
#container {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #333;
}

/* Header & Titel */
h1, h2 {
    color: #ffffff;
    border-bottom: 2px solid #00aaff;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Links */
a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

/* Tabellen-Styling (für Stream-Details) */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    text-align: left;
    background-color: #252525;
    color: #00aaff;
    padding: 12px;
    border-bottom: 2px solid #333;
}

td {
    padding: 12px;
    border-bottom: 1px solid #2a2a2a;
}

tr:hover {
    background-color: #252525;
}

/* Status-Indikatoren */
.status {
    font-weight: bold;
    color: #4caf50; /* Grün für Online */
}

/* Play-Button & Buttons */
.button, input[type="submit"] {
    background-color: #00aaff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #0088cc;
}

/* Album Art oder Logo */
#logo img {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #00aaff;
}

/* Footer */
#footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8em;
    color: #666;
}