


        .thumb-container { 
            width: 300px; 
            height: 180px; 
            overflow: hidden; 
            padding: 5px; 
            border: 1px solid #e1e1e1; 
            border-radius: 8px; 
            margin: 20px; 
        } 
  
        .thumb-image { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            border-radius: 5px; 
        } 
  
        .thumb-image:hover { 
            scale: 1.02; 
            cursor: pointer; 
        } 
  
        .thumb-container:hover { 
            box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5); 
        } 
