body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: url('/images/jiyi.JPG') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.container h1 {
    color: black;
    text-shadow: 0 0 10px white;
}

#videoPlayer {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background: #000;
}

.controls {
    margin: 20px 0;
}

#streamUrl {
    width: 70%;
    padding: 8px;
    margin-right: 10px;
}

button {
    padding: 8px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}

.logout {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* 登录页面样式 */
.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form input {
    padding: 8px;
    width: 200px;
}

.login-form button {
    padding: 8px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.login-form button:hover {
    background: #45a049;
}
