/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text for contrast */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    color: #ffffff;
}

/* Fixed container for the entire app */
.container {
    text-align: center;
    width: 100%;
    max-width: 1000px; /* Set a max width for the container */
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #1e1e1e; /* Dark container background */
}

/* Main heading */
h1 {
    font-size: 36px;
    color: #1e88e5; /* Jitsi blue color */
    margin-bottom: 20px;
}

/* Style for the room video display area */
#meet {
    width: 100%; /* Full width of the container */
    height: 500px; /* Fixed height for the video container */
    border: 2px solid #ffffff; /* White border around video */
    background-color: #000000; /* Black background for the video container */
    margin-bottom: 20px;
}

/* Style for the button container */
#create-join {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

/* Buttons and input styling */
button, input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin: 5px;
}

input {
    width: 200px; /* Set input width */
}

button {
    background-color: #1e88e5; /* Jitsi blue */
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    background-color: #1565c0; /* Darker blue on hover */
}

/* Host video section styling */
#host-video {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    border-radius: 10px;
}

/* Participants section style */
#participants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 800px;
}

.participant {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    background-color: #444444;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #333333;
}

/* Button transition effect */
button {
    transition: all 0.3s ease;
}

/* Text content styling */
p {
    font-size: 16px;
    color: #bbb;
    margin-top: 20px;
}