 /* General body styles */
 body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
    color: #333;
    margin: 0;
    padding: 20px;
  }
  
  /* Styling for the header (main title) */
  h1 {
    color: cornflowerblue;
    text-align: center;
    margin-bottom: 40px;
  }
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
  }

  /* Form input and label styling */
  label {
    font-weight: bold;
    color: cornflowerblue;
    display: flex;
    align-items: center;
  }
  .material-icons {
    margin-right: 8px;
  }
  input, select {
    width: 99%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  /* Button primary style */
  .btn-primary {
    background-color: cornflowerblue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
  }
  .btn-primary:hover {
    background-color: cornflowerblue;
  }
  
  /* Layout styles for video and processed frame containers */
  .layout-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .video-container, .processed-frame-container {
    flex: 1 1 48%;
    max-width: 500px;
    min-width: 300px;
    margin-top: 20px;
  }
  video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }
  img{
    width: 40%;
  }
  .action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  /* Responsive design for smaller screens */
  @media (max-width: 768px) {
    .layout-container {
      flex-direction: column;
    }
    .video-container, .processed-frame-container {
      max-width: 100%;
    }
  }

  footer{
    display: inline-block;
    width: 100%;

  }
  footer img{
    box-shadow: none;
  }
  footer img.bfc{
    height: 20%;
  }
  footer img.ulille{
    height: 40%;
  }
  footer img.beproact{
    height: 40%;
    width: 90%;
    
  }
  footer table{
    width: 100%;
    text-align: center;
  }