   .bodyreddit {
       
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 20vh;
            padding: 20px;
        }
        
        .container-reddit {
            width: 100%;
            max-width: 1000px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            padding : 20px;
            margin-bottom: 20px;

        }
        
        .header {
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        h1 {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .subtitle {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .content {
            padding: 30px;
        }
        
        .input-reddit {
            margin-bottom: 25px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
      .redditsel {
    width: 100% !important;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

        input:focus, select:focus {
            border-color: #ff4500;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.2);
        }
        
        .generate-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
            margin-bottom: 25px;
        }
        
        .generate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
        }
        
        .generate-btn:active {
            transform: translateY(0);
        }
        
        .results {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .result-title {
            margin-bottom: 15px;
            font-weight: 600;
            color: #444;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        
        .result-title::before {
            content: "💡";
            margin-right: 8px;
        }
        
        .username-list {
            list-style-type: none;
            max-height: 600px;
            overflow-y: auto;
            padding-right: 5px;
        }
        
        .username-list::-webkit-scrollbar {
            width: 6px;
        }
        
        .username-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .username-list::-webkit-scrollbar-thumb {
            background: #ff4500;
            border-radius: 10px;
        }
        
        .username-item {
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s;
            background-color: #f9f9f9;
        }
        
        .username-item:hover {
            background-color: #f0f0f0;
            transform: translateX(5px);
        }
        
        .username-text {
            flex-grow: 1;
            font-weight: 500;
            color: #222;
            font-size:20px;
        }
        
        .copy-btn {
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 15px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
            min-width: 70px;
            text-align: center;
        }
        
        .copy-btn:hover {
            background: #3d8b40;
            transform: scale(1.05);
        }
        
        .copy-btn.copied {
            background: #2196F3;
        }
        
        .empty-message {
            text-align: center;
            color: #777;
            padding: 30px 0;
            font-style: italic;
        }
        
        .redditnote {
            text-align: center;
            padding: 15px;
            background-color: #f5f5f5;
            color: #000000;
            font-size: 14px;
            border-top: 1px solid #e1e1e1;
        }
        
        @media (max-width: 500px) {
            .container-reddit {
                border-radius: 0;
            }
            
            .header, .content {
                padding: 20px;
            }
            
            h1 {
                font-size: 24px;
            }
        }