        /* Estilos para el buscador de dominios integrado */
        .dc-search-integrated {
            background: #fff3cd;
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #ffc107;
        }
        
        .dc-search-integrated h4 {
            margin: 0 0 15px 0;
            color: #856404;
        }
        
        .dc-search-flex {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .dc-input-small {
            flex: 1;
            padding: 10px;
            border: 2px solid #ffc107;
            border-radius: 6px;
            font-size: 16px;
        }
        
        .dc-btn-small {
            background: #ffc107;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .dc-btn-small:hover {
            background: #e0a800;
        }
        
        .dc-results-compact {
            margin-top: 15px;
        }
        
        .dc-result-item {
            background: white;
            padding: 12px;
            margin: 8px 0;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 2px solid #e0e0e0;
        }
        
        .dc-result-item.available {
            border-color: #27ae60;
            background: #e8f5e9;
        }
        
        .dc-result-item.taken {
            border-color: #f44336;
            background: #ffebee;
        }
        
        .dc-result-name {
            font-weight: bold;
            color: #333;
        }
        
        .dc-result-price {
            color: #27ae60;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .dc-result-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .dc-btn-select {
            background: #27ae60;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .dc-btn-select:hover {
            background: #229954;
        }
        
        .dc-badge-taken {
            background: #f44336;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .dc-loading {
            text-align: center;
            padding: 15px;
            color: #666;
            display: none;
        }
        
        .dc-loading.active {
            display: block;
        }

        /* Nuevos estilos para opciones de dominio */
        .dominio-opciones {
            background: #fff3cd;
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #ffc107;
        }

        .dominio-opciones h4 {
            margin: 0 0 15px 0;
            color: #856404;
        }

        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            padding: 12px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .radio-option:hover {
            border-color: #ffc107;
            background: #fffef5;
        }

        .radio-option input[type="radio"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .radio-option label {
            cursor: pointer;
            font-weight: 500;
            margin: 0;
        }

        /* Aviso DNS */
        .aviso-dns {
            background: #fff3cd;
            padding: 15px;
            border-radius: 6px;
            border-left: 4px solid #ffc107;
            margin-top: 10px;
            display: none;
        }

        .aviso-dns strong {
            color: #856404;
        }




        .aviso-registrar-dominio {
            display: none;
            margin: 20px 0;
            padding: 20px;
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            border-radius: 6px;
        }
        .aviso-registrar-dominio h4 {
            margin: 0 0 10px 0;
            color: #856404;
        }
        .aviso-registrar-dominio p {
            margin: 10px 0;
            color: #856404;
        }
        .btn-ir-dominios {
            display: inline-block;
            padding: 12px 30px;
            background: #ffc107;
            color: #000;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin-top: 10px;
            transition: all 0.3s;
        }
        .btn-ir-dominios:hover {
            background: #ffcd38;
            transform: translateY(-2px);
        }
