body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
  }
  
  main {
    flex: 1 0 auto;
  }
  
  .brand-logo {
    padding-left: 15px !important;
  }
  
  .video-card {
    transition: transform 0.2s ease-in-out;
  }
  
  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }
  
  .video-card .card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
  }
  
  .video-card .card-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .video-card .card-content {
    height: 100px;
    overflow: hidden;
  }
  
  .video-card .card-title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .video-card .card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .pending-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 152, 0, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
  }
  
  .section {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  
  .btn-verify {
    margin-top: 10px;
  }
  
  @media only screen and (max-width: 600px) {
    .video-card .card-image {
      height: 150px;
    }
    
    .video-card .card-content {
      height: 120px;
    }
  }
  
  .toast-success {
    background-color: #4caf50;
  }
  
  .toast-error {
    background-color: #f44336;
  }