 .btn-show {
          position:absolute;
          top:50px;
          left:0px;
          width:100px;
            padding: 12px 30px;
            
           
            border: none;
            border-radius: 0px 30px 30px 0px;
            font-size: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-show:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup {
            width: 90%;
            max-width: 500px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(50px) scale(0.9);
            transition: transform 0.5s ease;
        }
        
        .popup-overlay.active .popup {
            transform: translateY(0) scale(1);
        }
        
        .popup-header {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80') no-repeat center center;
            background-size: cover;
            height: 120px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .popup-title {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 1;
        }
        
        .popup-content {
            padding: 25px;
            max-height: 300px;
            overflow-y: auto;
            text-align: left;
        }
        
        .popup-content p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
        }
        
        .popup-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .popup-content li {
            margin-bottom: 8px;
            color: #555;
        }
        
        .popup-footer {
            padding: 15px 25px;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            border-top: 1px solid #eee;
        }
        
        .btn {
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-cancel {
            background: #e0e0e0;
            color: #555;
        }
        
        .btn-cancel:hover {
            background: #d0d0d0;
        }
        
        .btn-view {
            background: #4a90e2;
            color: white;
        }
        
        .btn-view:hover {
            background: #3a80d2;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #ff4757;
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .footer {
            color: white;
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            opacity: 0.8;
        }