
.fullScreen {
    width: 100%;
}

.half {
    width: 50%;
}

.headerDiv {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    /* Prevents the flex items from wrapping */
    border: 1px solid #ccc;
    padding: 10px;
    height: 160px;
    width: 100%;
    background-color: white;
}

.item {
    flex: 0 0 auto;
    /* Prevents the items from growing or shrinking */
    width: 140px;
    /* Set a fixed width for each item */
    margin-right: 10px;
    /* Add some space between items */
    border: 1px solid black;

    text-align: center;
}

.item-main-video {
    width: 100%;
    height: 76vh;

    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid black;
}

.item-main-chat {
    width: 90%;
    height: 76vh;

    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid black;
}

.dots {
    margin-top: 10px;

}


.tooltip {
    visibility: hidden;
    width: 200px;
    /* Adjust width for your suggestions */
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* Position the tooltip above the select */
    left: 50%;
    margin-left: -100px;
    /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-height: 300px) {
    .small-panal {
        background-color: black;
        margin-left: 1px;
        margin-right: 1px;
        display: flex;
        height: 53vh;
        /* Height for viewport heights between 400px and 800px */
    }
}

@media (min-height: 301px) and (max-height: 600px) {
    .small-panal {
        background-color: black;
        margin-left: 1px;
        margin-right: 1px;
        display: flex;
        height: 26vh;
        /* Height for viewport heights between 400px and 800px */
    }
}

/* Media query for height ranges */
@media (min-height: 601px) and (max-height: 700px) {
    .small-panal {
        background-color: black;
        margin-left: 1px;
        margin-right: 1px;
        display: flex;
        height: 19vh;
        /* Height for viewport heights between 400px and 800px */
    }
}

@media (min-height: 701px) and (max-height: 800px) {
    .small-panal {
        background-color: black;
        margin-left: 1px;
        margin-right: 1px;
        display: flex;
        height: 14vh;
        /* Height for viewport heights between 801px and 1200px */
    }
}

@media (min-height:801px) and (max-height:900px) {
    .small-panal {
        background-color: black;
        margin-left: 1px;
        margin-right: 1px;
        display: flex;
        height: 13vh;
        /* Height for viewport heights between 801px and 1200px */
    }

}

@media (min-height:901px) {
    .small-panal {
        background-color: black;
        margin-left: 1px;
        margin-right: 1px;
        display: flex;
        height: 5vh;
        /* Height for viewport heights between 801px and 1200px */
    }

}

.user-count {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#user_count {
    font-size: 1.8em;
    font-weight: bold;
    color: #4CAF50;
    /* Green color */
}

.label {
    font-size: 1.2em;
    color: #555;
    /* Grey color */
}

#exampleModal {
    transform: translate(50px, 50px);
}

.modal-body {
    overflow-y: scroll;
    text-align: justify;
}

/* General Section Styling */
.section {
    background-color: #f0f8ff;
    /* Light blue background */
    margin-top: 15px;
    /* Padding for the section */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    /* Full screen height */
}

/* Heading container for alignment */
.heading {
    text-align: center;
    font-family: 'Arial', sans-serif;
    /* Clean font family */
}

/* Row container to center the titles */
.row {
    margin-bottom: 20px;
    /* Space between rows */
}

/* Title styling */
.title {
    font-size: 2rem;
    /* Large font size */
    color: #2c3e50;
    /* Dark blue color */
    font-weight: bold;
    /* Bold font weight */
    text-transform: uppercase;
    /* Uppercase text */
    letter-spacing: 2px;
    /* Spacing between letters */
    margin: 0;
    padding: 10px 20px;
    background-color: #2980b9;
    /* Blue background */
    color: white;
    /* White text color */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: all 0.3s ease;
    /* Smooth transition */
}

.titlemob {
    font-size: 1rem;
    /* Large font size */
    color: #2c3e50;
    /* Dark blue color */
    font-weight: bold;
    /* Bold font weight */
    text-transform: uppercase;
    /* Uppercase text */
    letter-spacing: 2px;
    /* Spacing between letters */
    margin: 0;
    padding: 10px 20px;
    background-color: #2980b9;
    /* Blue background */
    color: white;
    /* White text color */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: all 0.3s ease;
    /* Smooth transition */
}


/* Subtitle styling */
.subtitle {
    font-size: 2rem;
    /* Smaller than the main title */
    color: #34495e;
    /* Grayish blue */
    font-weight: normal;
    margin: 0;
    padding: 10px 20px;
    background-color: #ecf0f1;
    /* Light gray background */
    color: #2c3e50;
    /* Dark text color */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover effect for the titles */
.title:hover,
.subtitle:hover {
    transform: translateY(-5px);
    /* Slightly move up on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    /* Stronger shadow on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        /* Adjust title size for smaller screens */
    }

    .subtitle {
        font-size: 1.8rem;
        /* Adjust subtitle size for smaller screens */
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Add a class for the vibrating effect */
.vibrate {
    animation: shake 0.5s ease-in-out;
    /* Animation name and duration */
    animation-iteration-count: 1;
    /* Only shake once */
}
    .circle-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #3498db;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .moving-circle {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #3498db;
            animation: move 2s infinite linear;
        }
        .circle-wrapper-mobile {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #3498db;
            display: flex;
            justify-content: center;
            align-items: center;
            border:2px solid black;
        }

        .moving-circle-mobile {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #3498db;
            animation: move 2s infinite linear;
        }
        @keyframes move {
            0% {
                transform: rotate(0deg) translateX(40px) rotate(0deg);
            }
            100% {
                transform: rotate(360deg) translateX(40px) rotate(-360deg);
            }
        }