/*                      *\
    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:contain;
  background-image: url("Objectdetector/img/Object_Detector-In_Image_Backroung-Img.jpg");
  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 {
    justify-items: center;
    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: 20px;
    width: 600px;
    margin-left: 30%;
    margin-bottom: 5%;
}
h1 {
    color: #333;
}
.image-container
{
    position: relative;
}
#canvas {
    border: 2px solid #333;
    border-radius: 8px;
    width: 100%;
    max-width: 50vh;
    max-height: 80vh;
    background:border-box;
}
#detectButton {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    background-color:  #434a50;
    color: white;
}
#detectButton:hover {
    background-color: #000000;
}

#detectButton :active {
    background-color: #474456;
}
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 pc website
\*                        */

@media (max-width: 768px) 
{
    .container 
    {
        margin-left:0%;
    }
}
/*                        *\
    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;
    }
    .container 
    {
        width: 85%;
    }
    .h1
    {
        width: 10px;
    }
    .file-upload-label 
    {
        margin-bottom: 10px      ;
    }
        
}