
    .krei-yt-generator-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 30px;
        background: #fbbc0524;
        border: 1px solid #ffcd57;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .krei-yt-generator-container h2 {
        color: #01629f;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .krei-yt-generator-container h2 i {
        color: #ff0000;
        margin-right: 10px;
    }
    
    .krei-tagline {
        color: #666;
        text-align: center;
        margin-bottom: 30px;
        font-size: 16px;
    }
    
    .krei-generator-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    @media (max-width: 768px) {
        .krei-generator-container {
            grid-template-columns: 1fr;
        }
    }
    
    .krei-options-panel {
        background: #f9f9f9;
        padding: 25px;
        border-radius: 10px;
    }
    
    .krei-results-panel {
        display: flex;
        flex-direction: column;
    }
    
    .krei-form-group {
        margin-bottom: 20px;
    }
    
    .krei-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }
    
    .krei-form-group input, .krei-form-group select {
        width: 100%;
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        background: white;
    }
    
    .krei-form-group input:focus, .krei-form-group select:focus {
        outline: none;
        border-color: #ff0000;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
    }
    
    .krei-generate-btn {
        background: #ff0000;
        color: white;
        border: none;
        padding: 14px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 10px;
    }
    
    .krei-generate-btn:hover {
        background: #cc0000;
        transform: translateY(-2px);
    }
    
    .krei-results-list {
        flex: 1;
        overflow-y: auto;
        margin: 20px 0;
        max-height: 400px;
    }
    
    .krei-result-item {
        padding: 15px;
        margin-bottom: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-left: 4px solid #ff0000;
        transition: transform 0.2s ease;
    }
    
    .krei-result-item:hover {
        transform: translateX(5px);
    }
    
    .krei-result-name {
        font-weight: 600;
        color: #333;
    }
    
    .krei-result-actions {
        display: flex;
        gap: 10px;
    }
    
    .krei-copy-btn, .krei-save-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .krei-copy-btn {
        background: #28a745;
        color: white;
    }
    
    .krei-save-btn {
        background: #007bff;
        color: white;
    }
    
    .krei-results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
    }
    
    .krei-clear-btn {
        padding: 8px 15px;
        background: #6c757d;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .krei-clear-btn:hover {
        background: #5a6268;
    }
    
    #krei-exportBtn {
        background: #17a2b8;
        color: white;
        border: none;
        padding: 12px 15px;
        border-radius: 6px;
        cursor: pointer;
        width: 100%;
        font-weight: 600;
    }
    
    #krei-exportBtn:hover {
        background: #138496;
    }
    
    .krei-notification {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        background: #28a745;
        color: white;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .krei-notification.show {
        transform: translateX(0);
    }
    