@charset "UTF-8";
/* ✅ General Styles */
body {
    background-color: #000000 !important;
    color: #e3e3e3 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: auto !important; /* Prevents unwanted scrolling */
}

/* ✅ Chat Container - Fills the Screen */
#chat-container {
    width: 100% !important;
    height: calc(100vh - 80px) !important; /* Adjusts height dynamically minus navbar */
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* Aligns to the left */
    padding: 1px !important;
	padding-top: 60px !important;
    box-sizing: border-box !important;
}

/* ✅ Chat Box - Dynamic Sizing */
#chat-box {
    width: 100% !important;
    flex-grow: 1 !important; /* Makes it take all available space */
    min-height: 300px !important; /* Ensures it doesn’t collapse */
    border: 1px solid #555 !important;
    background: #1e1e1e !important;
    overflow-y: auto !important;
    padding: 5px !important;
    border-radius: 8px !important;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1) !important;
    text-align: left !important;
}

/* ✅ Chat Messages */
.chat-message {
    text-align: left !important;
    padding: 5px 10px !important;
    font-size: 16px !important;
    word-wrap: break-word !important;
}

/* ✅ Message Input Field */
#message-container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 10px 0 !important;
}

#message-wrapper {
    flex-grow: 1 !important;
}

#message {
    width: 100% !important;
    color: #333 !important;
    text-align: left !important;
    border-radius: 5px !important;
}

/* ✅ Fixing EmojiOneArea Width */
.emojionearea {
    width: 100% !important;
}

/* ✅ Moderator Input Fields */
#mod-user-name {
    text-align: left !important;
    padding-left: 10px !important;
}

/* ✅ Buttons */
.btn, .btn-danger {
    background-color: #007bff !important;
    color: white !important;
    border-radius: 8px !important;
    text-align: center !important;
}

.btn-danger {
    background-color: #dc3545 !important;
}

/* ✅ Moderator Panel Link */
#moderator-panel {
    display: inline-block !important;
    background-color: #28a745 !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
}

#moderator-panel:hover {
    background-color: #218838 !important;
}

/* ✅ Login, Signup & Account Page Consistency */
#login-wrapper, #signup-wrapper, #account-wrapper, #forgot-password-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important; /* Align to top */
    width: 100% !important;
    min-height: 100vh !important;
    overflow: auto !important;
    padding-top: 60px !important; /* Pushes it down from the top */
}

/* ✅ Login, Signup & Account Box */
#login-container, #signup-container, .account-container, #forgot-password-container {
    width: 420px !important;
    min-height: 250px !important;
	padding: 30px !important;
    background-color: #111111 !important;
    border-radius: 15px !important;
    text-align: left !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: relative !important;
    margin: 50px auto 50px auto !important; /* Adds space on top & bottom */
}

/* ✅ Mod Panel Wrapper - Keeps It Centered */
#mod-panel-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important; /* Align to top */
    width: 100% !important;
    min-height: 100vh !important;
    overflow: auto !important;
    padding-top: 60px !important; /* Pushes it down from the top */
}

/* ✅ Mod Panel Container */
#mod-panel-container {
    width: 90% !important;
    max-width: 1280px !important;
    min-height: 250px !important;
    padding: 30px !important;
    background-color: #111111 !important;
    border-radius: 15px !important;
    text-align: left !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: relative !important;
    margin: 50px auto 50px auto !important; /* Adds space on top & bottom */
}

/* ✅ Form Inputs */
#login-form input, #signup-form input, #forgot-password-form input {
    width: 90% !important;
    padding: 10px !important;
    margin: 10px 0 !important;
    border: 1px solid #888 !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    background-color: #fff !important;
    color: #000 !important;
}

/* ✅ Login, Signup & Forgot Password Buttons */
#login-form button, #signup-form button, #forgot-password-form button {
    width: 95% !important;
    padding: 10px !important;
    border: none !important;
    border-radius: 5px !important;
    background-color: #007bff !important;
    color: white !important;
    font-size: 16px !important;
    cursor: pointer !important;
    margin-top: 10px !important;
}

#login-form button:hover, #signup-form button:hover, #forgot-password-form button:hover {
    background-color: #0056b3 !important;
}

/* ✅ Account Page Wrapper - Ensures Proper Positioning */
#account-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important; /* Keeps it from cutting off */
    width: 100% !important;
    min-height: 100vh !important;
    overflow: auto !important;
    padding-top: 86px !important; /* Pushes it below the navbar */
}

/* ✅ Account Container - Keeps Box Centered & Visible */
#account-container {
    width: 420px !important;
    min-height: 250px !important;
    padding: 30px !important;
    background-color: #111111 !important;
    border-radius: 15px !important;
    text-align: left !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: relative !important;
    margin: 0 auto 50px auto !important; /* Keeps space below */
}


/* ✅ DELETE SECTION */
.delete-section {
    margin-top: 20px !important;
    padding: 15px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
}

/* ✅ DELETE ACCOUNT BUTTON - RED */
.delete-btn {
    background-color: #dc3545 !important;
    color: white !important;
    font-weight: bold !important;
}

.delete-btn:hover {
    background-color: #b02a37 !important;
}

/* ✅ Chatroom Disclaimer */
#chatroom-disclaimer {
    background-color: #ffcc00 !important; /* Bright yellow */
    color: #000 !important;
    font-weight: bold !important;
    text-align: center !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2) !important;
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
    #login-container, #signup-container, .account-container, #forgot-password-container {
        width: 90% !important;
        padding: 25px !important;
    }
}

/* ✅ Chatroom Header with Buttons */
#chatroom-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
	margin-top: 20px !important;
    margin-bottom: 4px !important;
}

/* ✅ Chatroom Header Styling */
#chatroom-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 4px !important;
}

/* ✅ Chatroom Title & Live Indicator */
#chatroom-title-container {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important; /* Space between live indicator & title */
}

/* ✅ Live Indicator Styling */
#live-indicator {
    font-size: 18px !important;
    font-weight: bold !important;
}

.live {
    color: red;
}

.offline {
    color: gray;
}
/* —— Form labels normal weight (not bold) —— */
#login-container label,
#signup-container label,
#forgot-password-container label,
#account-container label,
#contact-form .form-label,
#contact-form label {
  font-weight: 400 !important;   /* normal */
  font-style: normal !important;  /* just in case */
  color: #e3e3e3 !important;
  display: block !important;
  margin: 6px 0 4px 0 !important;
}

/* —— Contact form inputs match login/signup (white fields) —— */
#contact-form input,
#contact-form textarea {
  width: 90% !important;
  padding: 10px !important;
  margin: 10px 0 !important;
  border: 1px solid #888 !important;
  border-radius: 5px !important;
  font-size: 16px !important;
  background-color: #fff !important;
  color: #000 !important;
}

/* —— Contact form button matches buttons elsewhere —— */
#contact-form button {
  width: 95% !important;
  padding: 10px !important;
  border: none !important;
  border-radius: 5px !important;
  background-color: #007bff !important;
  color: #fff !important;
  font-size: 16px !important;
  cursor: pointer !important;
  margin-top: 10px !important;
}
#contact-form button:hover {
  background-color: #0056b3 !important;
}
