/*                      *\
    style for scrollbar
\*                      */

  /* Hide scrollbar on PC */
  ::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar on Mobile (Safari and Chrome) */
  ::-webkit-scrollbar,
  *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  
  /* Hide scrollbar on Firefox */
  html {
    scrollbar-width: none;
  }
  
  /* Hide scrollbar on Edge */
  ::-ms-scrollbar {
    width: 0;
    height: 0;
  }
/*                              *\
    Style for intro Animation
\*                              */
/* Full-screen overlay for the animation */
#intro 
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Hide the overlay */
#intro.hidden 
{
  display: none;
}

/* Ensure the video covers the entire screen */
#intro video 
{
  width: 100%;
  height: 100%;
  object-fit:inherit;
  background-image: url("img/Object_Detector_Main_background-Logo.jpeg");
  background-size: contain;
}
/*                      *\
     Style for webpage
\*                      */
.main-Logo 
    {
        padding: 0px;
        float: right;
    }
    .Logo-Text 
    {
        padding: 20px;
        float: left;
    }
    .column 
    {
        display:flow-root;
    }

.h_Ll
{
    width: px;
    height: 120px;
    border-radius: 20px;
}
.h_Lr
{
    width: 120px;
    height: 120px;
    margin: 10px;
    border: inset;
    border-radius: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-image: url("../img/Object_Detector_Main_background-Logo.jpeg");
}
.container {
    border: inset;
    border-color: #3a311f;
    box-shadow: 15px 15px 30px #207a9b, -15px -15px 30px #051a29;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 8px;
}
h1 {
    color: #333;
}
#video-container {
    position: relative;
}
#video {
    border: 2px solid #333;
    border-radius: 8px;
    width: 100%;
    max-height: 80vh;
    background:border-box;
}
p {
    color: #666;
}
.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}
.start-camera {
    background-color: #4CAF50;
    color: white;
}
.stop-camera {
    background-color: red;
    color: white;
}
.start-detection {
    background-color: black;
    color: white;
}
.stop-detection {
    background-color: darkgreen;
    color: white;
}
footer 
{
    border-width: 1%;
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #333;
    color: #fff;
}
.lk 
{
    list-style-type: none;
    padding: 10px;
    border-radius: 100%;
    width: 50px;
    height: auto;
}
.menu-social-container 
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
/*                        *\
    Style for MB website
\*                        */

@media (max-width: 480px) 
{
.h_Ll
{
    width: 120px;
    height: 60px;
    border-radius: 10px;
}
.h_Lr
{
    width: 70px;
    height: 70px;
    margin: 10px;
    border: inset;
    border-radius: 100%;
}
.lk 
{
    list-style-type: none;
    padding: 10px;
    border-radius: 100%;
    width: 30px;
    height: auto;
}
.p1
{
    width: 10px;
}

}