/* General styling for the page */
body {
    background-image: url('garage-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

/* Header and Navigation (same as index.html for consistency) */
header {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
}
header h1 {
    color: #ff8c00;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}
header p {
    color: #e0e0e0;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 5px 0 0;
}
nav {
    background-color: #333;
    padding: 15px 0;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #ffcc00;
}
#logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: auto;
    z-index: 1000;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
#logo-overlay:hover {
    transform: scale(1.05);
}

/* Main content area and About Me section styling */
main {
    padding: 20px;
}

#live-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    text-align: center;
}

#live-content h2, #live-content p {
    color: #FFD700;
}

#set-reminder-btn {
    background-color: #ffcc00;
    color: #222;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#set-reminder-btn:hover {
    background-color: #ff8c00;
}

#live-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

#video-stream {
    background-color: #000;
    border: 3px solid #ff8c00;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#video-stream img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

#chat-window {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    border: 3px solid #ff8c00;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 500px;
    padding: 20px;
}

#chat-box {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    background-color: #ff8c00;
    align-self: flex-end;
    color: #222;
}

.bot-message {
    background-color: #333;
    align-self: flex-start;
    color: #fff;
    border: 1px solid #ff8c00;
}

#chat-form {
    display: flex;
    gap: 10px;
}

#chat-input {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ff8c00;
    background-color: #222;
    color: #fff;
}

#chat-form button {
    background-color: #ffcc00;
    color: #222;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#chat-form button:hover {
    background-color: #ff8c00;
}

/* Footer (same as index.html for consistency) */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}