/* General Page Styling */
body {
    background-color: #000; /* Black background */
    font-family: Arial, sans-serif;
    text-align: center;
    color: white; /* All text will be white */
    font-weight: bold; /* Make all text bold */
}

/* Headings */
h1, h2, h3, p, label {
    color: white; /* Ensure all text is white */
    font-weight: bold; /* Make headings bold */
}




.comment {
        font-size:25px !important;/* Force smaller text */
	font-weight: normal !important; /* Remove bold */
    margin-bottom: 50px !important; /* Space between comments */
    background-color: black !important; /* Black background */
    color: white !important; /* White text */
    text-align: left !important; /* Align text to the left */
    border-radius: 20px !important; /* Rounded corners for style */
    border: 2px solid white !important; /* White border around each comment */
    display: block !important; /* Ensure each comment appears as a block */
    max-width: 800px !important; /* Prevent comments from being too wide */

	
 line-height: 1.2 !important; /* Adjust line spacing */
    padding: 5px !important; /* Reduce padding */
    margin-bottom: 5px !important; /* Reduce space between comments */
    width: 75% !important; /* Make comments narrower */
    max-width: 500px !important; /* Limit maximum width */
}







/* Style submit buttons */
input[type="submit"] {
    background-color: black; /* Black background */
    color: white; /* White text */
    padding: 10px 20px;
    border: 2px solid white; /* White border */
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%; /* Makes it stretch inside the input box */
}

/* Change appearance on hover */
input[type="submit"]:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
}
#comments {
    font-size: 10px;
    font-weight: bold;
    color: white;
}




/* Login Form */
form {
    background: rgba(255, 255, 255, 0.1); /* Light transparent background */
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

/* Input Fields */
input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid white;
    border-radius: 5px;
    background-color: black; /* Black input box */
    color: white; /* White text inside input */
    font-weight: bold; /* Bold text */
}

/* Input Placeholder */
::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Light white text */
    font-weight: bold; /* Bold placeholder text */
}

/* Input Focus */
input:focus {
    outline: none;
    border-color: white;
}



/* Style for videos */
.video-container {
    display: flex !important;  /* Center video container */
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important; /* Make it full width */
    max-width: 800px !important; /* Prevent it from being too large */
    margin: 20px auto !important; /* Center the video */
    background-color: black !important; /* Ensure background is black */
    padding: 10px !important;
    border-radius: 10px !important; /* Rounded corners */
}

/* Ensure video is responsive */
.video-container video {
    width: 100% !important;

}




/* Make Name & Email Fields Wider Too */
input[type="text"], input[type="email"] {
    width: 80vw !important; /* Scale based on screen width */
    max-width: 700px !important; /* Make them bigger */
    padding: 12px !important;
}

/* Adjusted Mega Message Box - Fits Perfectly */
.mega-box, textarea {
    width: 80vw !important; /* Reduce width to fit well */
    max-width: 900px !important; /* Set a smaller max width */
    height: 250px !important; /* Reduce height slightly */
    padding: 12px !important; /* Keep comfortable padding */
    font-size: 16px !important; /* Slightly smaller text */
    border: 2px solid white !important; /* White border */
    border-radius: 5px !important; /* Rounded edges */
    background-color: black !important; /* Black background */
    color: white !important; /* White text */
    display: block !important;
    margin: 15px auto !important; /* Keep centered */
}

}


